// WITH_RUNTIME fun test(flag: Boolean, i: Int) { require(flag) if (i == 0) { println(0) } else { println(1) println(2) } }