7898d167f3
"so that variables declared in loop body are not visible outside of the
loop" (from commit d096f1d)
8 lines
124 B
Kotlin
Vendored
8 lines
124 B
Kotlin
Vendored
fun foo() {
|
|
{ // BLOCK
|
|
do// COMPOSITE {
|
|
val x: Int = 42
|
|
// } while (EQEQ(arg0 = x, arg1 = 42).not())
|
|
}
|
|
}
|