Sign in
rust
/
rust
/
refs/heads/lcnr/rustc-dev-guide
/
.
/
src
/
tools
/
rustfmt
/
tests
/
target
/
issue-3227
/
one.rs
blob: 2922bfdfef7691b14ebb72be0e7c7793ca4f2c1f [
file
] [
log
] [
blame
]
// rustfmt-style_edition: 2015
fn
main
()
{
thread
::
spawn
(||
{
while
true
{
println
!(
"iteration"
);
}
});
thread
::
spawn
(||
loop
{
println
!(
"iteration"
);
});
}