Files
kotlin-fork/compiler/testData/codegen/box/properties/lateinit/local/localLateinit.kt
T
2018-08-15 13:35:14 +03:00

9 lines
123 B
Kotlin
Vendored

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