Files
kotlin-fork/compiler/testData/codegen/box/delegatedProperty/local/kt16864.kt
T
2018-08-15 13:35:14 +03:00

14 lines
234 B
Kotlin
Vendored

// IGNORE_BACKEND: JVM_IR
object Whatever {
operator fun getValue(thisRef: Any?, prop: Any?) = "OK"
}
fun box(): String {
val key by Whatever
return {
object {
val keys = key
}.keys
} ()
}