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