Files
kotlin-fork/compiler/testData/codegen/box/labels/propertyAccessorFunctionLiteral.kt
T
2014-05-29 21:24:05 +04:00

14 lines
198 B
Kotlin

val Int.getter: Int
get() {
return {
this@getter
}.invoke()
}
fun box(): String {
val i = 1
if (i.getter != 1) return "getter failed"
return "OK"
}