12 lines
165 B
Kotlin
Vendored
12 lines
165 B
Kotlin
Vendored
val Int.getter: Int
|
|
get() {
|
|
return this@getter
|
|
}
|
|
|
|
fun box(): String {
|
|
val i = 1
|
|
if (i.getter != 1) return "getter failed"
|
|
|
|
return "OK"
|
|
}
|