blob: d5a4312e785c08866a619323ed13ac32ca8dfdcc [file] [log] [blame]
// WITH_RUNTIME
fun foo(i: Int) {}
fun test(s: String) {
<caret>if (s.isNotBlank()) {
foo(1)
} else {
foo(2)
}
}