Files
kotlin-fork/compiler/testData/codegen/box/delegatedProperty/kt6722.kt
T
2019-11-19 11:00:09 +03:00

16 lines
201 B
Kotlin
Vendored

// IGNORE_BACKEND_FIR: JVM_IR
// WITH_RUNTIME
interface T {
}
fun box(): String {
val a = "OK"
val t = object : T {
val foo by lazy {
a
}
}
return t.foo
}