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