mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-08 15:53:19 +00:00
8 lines
143 B
Kotlin
8 lines
143 B
Kotlin
fun foo() {
|
|
return
|
|
// val xyz has empty live range because everything after return will be removed as dead
|
|
val xyz = 1
|
|
}
|
|
|
|
// 0 xyz
|