Files
kotlin-fork/compiler/testData/codegen/box/properties/lateinit/topLevel/topLevelLateinit.kt
T
2020-01-08 13:20:00 +01:00

10 lines
125 B
Kotlin
Vendored

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