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