Files
kotlin-fork/nj2k/testData/newJ2k/detectProperties/SetterWithSideEffect3.kt
T
2019-09-29 11:39:36 +03:00

11 lines
170 B
Kotlin
Vendored

class C {
protected var x = ""
fun getX(): String {
return x
}
fun setX(x: String) {
println("setter invoked")
this.x = x
}
}