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

15 lines
190 B
Kotlin

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