// WITH_RUNTIME fun foo(x: Int) {} fun bar(s: String?) { if (s == null) { 1 } else if (false) { foo(1) 2 } else { 3 } }