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