mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-09 00:21:47 +00:00
The number of initializations of the `value` field before the live range begins does not really matter so long as we insert a write of a default value to the local if there were none.
12 lines
195 B
Kotlin
Vendored
12 lines
195 B
Kotlin
Vendored
fun test(): Char {
|
|
val c: Char
|
|
run {
|
|
c = ' '
|
|
println(c)
|
|
}
|
|
return c
|
|
}
|
|
|
|
// The first on declaration, the other on initialization
|
|
// 2 ISTORE 0
|
|
// 1 LOCALVARIABLE c C |