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

10 lines
144 B
Kotlin
Vendored

import kotlin.reflect.KProperty
class Delegate {
fun getValue(_this: Nothing?, p: KProperty<*>): Int = 0
}
val a = Delegate()
val b by a