blob: 313411c67e1a55cc261b9648902af35dc7e7e30f [file] [log] [blame]
// WITH_RUNTIME
fun foo(x: Int) {}
fun bar(s: String?) {
if (s == null) {
1
}
else {
foo(1)
2
}
}