mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-09 00:21:47 +00:00
11 lines
243 B
Kotlin
Vendored
11 lines
243 B
Kotlin
Vendored
fun foo() {
|
|
val p = 1
|
|
when (p) {
|
|
0 -> System.out?.println()
|
|
else -> System.out?.println()
|
|
}
|
|
}
|
|
// 1 LINENUMBER 3
|
|
// Adding ignore flags below the test since the test relies on line numbers.
|
|
// IGNORE_BACKEND: JVM_IR
|