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