7 lines
104 B
Kotlin
Vendored
7 lines
104 B
Kotlin
Vendored
// !LANGUAGE: +LateinitLocalVariables
|
|
|
|
fun test() {
|
|
lateinit var s: String
|
|
s = ""
|
|
s.length
|
|
} |