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

16 lines
197 B
Kotlin
Vendored

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