Files
kotlin-fork/compiler/testData/codegen/box/properties/lateinit/topLevel/topLevelLateinit.kt
T
2018-06-09 19:15:38 +03:00

11 lines
145 B
Kotlin
Vendored

// IGNORE_BACKEND: JS_IR
// LANGUAGE_VERSION: 1.2
lateinit var ok: String
fun box(): String {
run {
ok = "OK"
}
return ok
}