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

7 lines
81 B
Kotlin
Vendored

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