fun test(flag: Boolean) { if (flag) { consume(1) } else { consume(2) } } fun consume(n: Int) {}