401d8c2d70
#KT-28619 Fixed
11 lines
163 B
Plaintext
Vendored
11 lines
163 B
Plaintext
Vendored
fun test(b: Boolean) {
|
|
if (b) foo(0)
|
|
else {
|
|
while (true) {
|
|
foo(1)
|
|
}
|
|
}
|
|
// comment about call below
|
|
}
|
|
|
|
fun foo(i: Int) {} |