mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-12 00:21:32 +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.
13 lines
137 B
Kotlin
Vendored
13 lines
137 B
Kotlin
Vendored
// WITH_RUNTIME
|
|
|
|
fun box(): String {
|
|
val x: String
|
|
run {
|
|
x = "OK"
|
|
val y = x
|
|
}
|
|
return x
|
|
}
|
|
|
|
// 0 ObjectRef
|