a9eadcbaf4
#KT-12046 Fixed
17 lines
218 B
Kotlin
Vendored
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"
|
|
}
|
|
}
|