d5e71ebef1
#KT-34593 Fixed
10 lines
138 B
Plaintext
Vendored
10 lines
138 B
Plaintext
Vendored
// WITH_RUNTIME
|
|
fun foo(i: Int) {}
|
|
|
|
fun test(s: String) {
|
|
<caret>if (s.isEmpty()) {
|
|
foo(2)
|
|
} else {
|
|
foo(1)
|
|
}
|
|
} |