Files
kotlin-fork/js/js.translator/testData/lineNumbers/whenEntryWithMultipleConditions.kt
T
2017-07-06 10:20:46 +03:00

21 lines
364 B
Kotlin
Vendored

fun box(x: Int) {
println(
when (
x
) {
1,
2,
3 ->
55
4,
5 ->
66
else ->
77
}
)
}
// LINES: 19 4 4 3 6 4 6 4 7 4 8 9 9 11 4 11 4 12 13 13 16 16 2