Files
kotlin-fork/compiler/testData/codegen/box/properties/lateinit/topLevel/topLevelLateinit.kt
T
2019-11-19 11:00:09 +03:00

10 lines
125 B
Kotlin
Vendored

// IGNORE_BACKEND_FIR: JVM_IR
lateinit var ok: String
fun box(): String {
run {
ok = "OK"
}
return ok
}