Files
kotlin-fork/compiler/testData/codegen/boxWithStdlib/reflection/enclosing/kt6368.kt
T
2015-05-12 19:43:17 +02:00

25 lines
437 B
Kotlin
Vendored

import kotlin.properties.Delegates
import java.util.HashMap
interface R {
fun result(): String
}
val a by Delegates.lazy {
with(HashMap<String, R>()) {
put("result", object : R {
override fun result(): String = "OK"
})
this
}
}
fun box(): String {
val r = a["result"]
// Check that reflection won't fail
r.javaClass.getEnclosingMethod().toString()
return r.result()
}