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

13 lines
161 B
Kotlin

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