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