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

6 lines
90 B
Kotlin
Vendored

// PROBLEM: 'for' has empty body
// FIX: none
fun test() {
<caret>for (i in 1..10);
}