// WITH_RUNTIME fun foo(i: Int) {} fun test(s: String) { if (s.isEmpty()) { foo(2) } else { foo(1) } }