65f06454be
#KT-30970 Fixed
8 lines
122 B
Kotlin
Vendored
8 lines
122 B
Kotlin
Vendored
// PROBLEM: 'if' has empty body
|
|
// FIX: none
|
|
|
|
fun test(i: Int) {
|
|
if (i == 1) {
|
|
} else <caret>if (i == 2) {
|
|
}
|
|
} |