Files
kotlin-fork/idea/testData/refactoring/introduceParameter/secondaryConstructorWithDefaultValue.kt
T
2015-04-09 13:49:20 +03:00

10 lines
141 B
Kotlin
Vendored

class A {
constructor(a: Int) {
val b = (<selection>a + 1</selection>) * 2
val t = a + b
}
}
fun test() {
A(1)
}