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

6 lines
102 B
Kotlin
Vendored

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