blob: 49fb8d9341e0372d1509bd952fcbaea4518d3e91 [file]
fun foo(i: Int) {
if (i <= 0) {
} else
bar()
}
fun bar() {}