blob: a290176fbc91716017b11595face3b1e3362de9c [file] [log] [blame]
fun box() {
when (A()) {
is A ->
println("A")
is B ->
println("B")
else ->
println("other")
}
}
open class A
open class B : A()
// LINES(JS_IR): 1 1 2 3 3 4 4 5 5 6 6 8 8 12 12 14 14 14