Files
kotlin-fork/compiler/testData/codegen/box/delegatedProperty/local/kt12891.kt
T
2016-07-05 21:22:48 +03:00

5 lines
76 B
Kotlin
Vendored

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