279b406bca
#KT-5009 Fixed
10 lines
136 B
Plaintext
Vendored
10 lines
136 B
Plaintext
Vendored
fun foo() {
|
|
val v: (Int) -> Unit = {
|
|
<caret>if (it <= 1) {
|
|
} else {
|
|
bar()
|
|
}
|
|
}
|
|
}
|
|
|
|
fun bar(){} |