// WITH_RUNTIME fun test(i: Int) { when { i == 1 -> { println(1) } else -> { println(3) } } }