Files
kotlin-fork/compiler/testData/cfg/declarations/properties/DelegatedProperty.kt
T

7 lines
109 B
Kotlin

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