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

11 lines
135 B
Kotlin

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