Files
kotlin-fork/compiler/testData/codegen/extensionProperties/topLevelWithGetter.kt
T
2012-11-13 19:03:20 +04:00

8 lines
95 B
Kotlin

val Int.foo: String = "OK"
get() {
return $foo
}
fun box(): String {
return 1.foo
}