401d8c2d70
#KT-28619 Fixed
10 lines
162 B
Kotlin
Vendored
10 lines
162 B
Kotlin
Vendored
fun test(b: Boolean) {
|
|
if (b) foo(0)
|
|
else<caret>
|
|
while (true) {
|
|
foo(1)
|
|
}
|
|
// comment about call below
|
|
}
|
|
|
|
fun foo(i: Int) {} |