Files
kotlin-fork/j2k/testData/fileOrElement/detectProperties/GetterWithSideEffect2.new.kt
T
2019-04-03 11:24:13 +03:00

17 lines
228 B
Kotlin
Vendored

class C {
private var x = ""
fun getX(): String {
println("getter invoked")
return x
}
fun setX(x: String) {
this.x = x
}
internal fun foo() {
println("x = $x")
}
}