Files
kotlin-fork/compiler/testData/cfg/DelegatedProperty.kt
T
2013-12-05 13:02:16 +04:00

7 lines
104 B
Kotlin

class Delegate {
fun get(_this: Any, p: PropertyMetadata): Int = 0
}
val a = Delegate()
val b by a