Files
kotlin-fork/j2k/testData/fileOrElement/detectProperties/GetterWithSideEffect2.kt
T
2016-04-29 18:13:51 +03:00

17 lines
230 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)
}
}