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

15 lines
195 B
Kotlin

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