Sign in
rust
/
rustfmt
/
refs/heads/subtree
/
.
/
tests
/
target
/
issue-3227
/
two.rs
blob: 374ab54305d9953f18b31d97b33059ac82d7cbbc [
file
] [
log
] [
blame
] [
edit
]
// rustfmt-version: Two
fn
main
()
{
thread
::
spawn
(||
{
while
true
{
println
!(
"iteration"
);
}
});
thread
::
spawn
(||
{
loop
{
println
!(
"iteration"
);
}
});
}