6 lines
75 B
Plaintext
Vendored
6 lines
75 B
Plaintext
Vendored
class Foo {
|
|
private val _x = ""
|
|
val x: String
|
|
get() = _x
|
|
}
|