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