blob: f91c7a2b4133cbb2533ca34b19bf6690d46852a5 [file] [log] [blame]
fun foo() {
val v: (Int) -> Unit = {
<caret>if (it <= 1) {
} else {
bar()
}
}
}
fun bar(){}