Files
kotlin-fork/idea/testData/intentions/convertSecondaryConstructorToPrimary/propertyWithSetter.kt
T

14 lines
195 B
Kotlin
Vendored

fun log(s: String) {
}
class A {
var x: String
set(value) {
log(value)
field = value
}
<caret>constructor(x: String) {
this.x = x
}
}