Files
kotlin-fork/compiler/testData/codegen/box/delegatedProperty/local/kt12891.kt
T

5 lines
76 B
Kotlin
Vendored

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