a9eadcbaf4
#KT-12046 Fixed
13 lines
162 B
Kotlin
Vendored
13 lines
162 B
Kotlin
Vendored
class C {
|
|
var x = ""
|
|
|
|
fun getX(): String {
|
|
println("getter invoked")
|
|
return x
|
|
}
|
|
|
|
fun setX(x: String) {
|
|
this.x = x
|
|
}
|
|
}
|