Files
kotlin-fork/compiler/testData/codegen/box/delegatedProperty/kt6722.kt
T
2020-04-03 13:29:55 +03:00

15 lines
171 B
Kotlin
Vendored

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