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

17 lines
218 B
Kotlin
Vendored

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