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