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

15 lines
190 B
Kotlin
Vendored

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