Files
kotlin-fork/compiler/testData/codegen/box/delegatedProperty/delegateForExtProperty.kt
T
2013-04-30 21:47:22 +04:00

13 lines
166 B
Kotlin

class Delegate {
fun get(t: A, p: String): Int = 1
}
val A.prop: Int by Delegate()
class A {
}
fun box(): String {
return if(A().prop == 1) "OK" else "fail"
}