5 lines
58 B
Kotlin
Vendored
5 lines
58 B
Kotlin
Vendored
interface My {
|
|
val x: Int = 0
|
|
get() = field
|
|
}
|