mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-09 08:31:29 +00:00
Loads from compiler-introduces temporary variables to do not correspond to loads in user code.
9 lines
140 B
Kotlin
Vendored
9 lines
140 B
Kotlin
Vendored
fun foo() {
|
|
val p = 1
|
|
when (p) {
|
|
0 -> System.out?.println()
|
|
else -> System.out?.println()
|
|
}
|
|
}
|
|
// 1 LINENUMBER 3
|