Files
kotlin-fork/idea/testData/inspectionsLocal/controlFlowWithEmptyBody/doWhile/blockHasComment.kt
T
2019-07-04 16:33:24 +07:00

8 lines
107 B
Kotlin
Vendored

// PROBLEM: none
// FIX: none
fun test(i: Int) {
<caret>do {
// comment
} while (i == 1)
}