Files
kotlin-fork/idea/testData/inspectionsLocal/controlFlowWithEmptyBody/ifElse/blockHasComment.kt
T
Toshiaki Kameyama 65f06454be Add "Control flow with empty body" inspection
#KT-30970 Fixed
2019-05-29 18:04:24 +07:00

9 lines
131 B
Kotlin
Vendored

// PROBLEM: 'else' has empty body
// FIX: none
fun test(i: Int) {
if (i == 1) {
} <caret>else {
// comment
}
}