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

16 lines
250 B
Kotlin
Vendored

fun box() {
when (A()) {
is A ->
println("A")
is B ->
println("B")
else ->
println("other")
}
}
open class A
open class B : A()
// LINES: 10 2 2 2 2 3 3 4 4 5 5 6 6 8 8 12 * 14 14