Sign in
fuchsia
/
third_party
/
rust
/
0.4
/
.
/
src
/
test
/
run-pass
/
long-while.rs
blob: f9c7bfd4c7c50ef658334b06bbf093b4ccf01204 [
file
] [
log
] [
blame
]
fn
main
()
{
let
mut
i
:
int
=
0
;
while
i
<
1000000
{
i
+=
1
;
let
x
=
3
;
}
}