Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
ed7ee67e4e1513f9b3ba9587b6d6e950e7a1da7f
/
.
/
compiler
/
testData
/
codegen
/
box
/
controlStructures
/
emptyWhile.kt
blob: c52c5124f5214fb6dcf80bacad93186bd28baf63 [
file
]
fun box
():
String
{
while
(
false
);
var
x
=
0
while
(
x
++<
5
);
if
(
x
!=
6
)
return
"Fail: $x"
return
"OK"
}