Files
kotlin-fork/compiler/testData/codegen/box/delegatedProperty/accessTopLevelDelegatedPropertyInClinit.kt
T

14 lines
183 B
Kotlin
Vendored

// KT-5612
class Delegate {
public fun getValue(thisRef: Any?, prop: PropertyMetadata): String {
return "OK"
}
}
val prop by Delegate()
val a = prop
fun box() = a