Sign in
android
/
toolchain
/
rustc
/
43f0694b1feb1296004d84509e01177159e71be0
/
.
/
src
/
test
/
ui
/
yield2.rs
blob: 376faab0c48fef73fd819aecb5b377c3407f5cbc [
file
] [
log
] [
blame
]
// run-pass
use
std
::
thread
;
pub
fn
main
()
{
let
mut
i
:
isize
=
0
;
while
i
<
100
{
i
=
i
+
1
;
println
!(
"{}"
,
i
);
thread
::
yield_now
();
}
}