279b406bca
#KT-5009 Fixed
9 lines
117 B
Plaintext
Vendored
9 lines
117 B
Plaintext
Vendored
fun foo(p: Int) {
|
|
val x = 2
|
|
if (p > 0) {
|
|
<caret>if (x <= 1) return
|
|
bar()
|
|
}
|
|
}
|
|
|
|
fun bar(){} |