65f06454be
#KT-30970 Fixed
10 lines
110 B
Kotlin
Vendored
10 lines
110 B
Kotlin
Vendored
// PROBLEM: none
|
|
|
|
fun test(i: Int) {
|
|
if (i == 1) {
|
|
} <caret>else {
|
|
foo()
|
|
}
|
|
}
|
|
|
|
fun foo() {} |