Files
kotlin-fork/j2k/testData/fileOrElement/detectProperties/GetterWithSideEffect2.kt
T

16 lines
227 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")
}
}