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

16 lines
196 B
Kotlin
Vendored

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