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