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

8 lines
104 B
Kotlin
Vendored

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