Files
kotlin-fork/compiler/testData/codegen/box/delegatedProperty/accessTopLevelDelegatedPropertyInClinit.kt
T
2014-08-14 10:43:50 +04:00

14 lines
178 B
Kotlin

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