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

6 lines
106 B
Kotlin
Vendored

// IGNORE_BACKEND_FIR: JVM_IR
//WITH_RUNTIME
fun box(): String {
val x by lazy { "OK" }
return x
}