65f06454be
#KT-30970 Fixed
8 lines
128 B
Kotlin
Vendored
8 lines
128 B
Kotlin
Vendored
// PROBLEM: 'do while' has empty body
|
|
// FIX: none
|
|
|
|
fun test(i: Int) {
|
|
<caret>do {
|
|
// comment
|
|
} while (i == 1)
|
|
} |