Sign in
rust
/
rustfmt
/
refs/heads/revert-5847-format-header
/
.
/
tests
/
source
/
issue-3227
/
two.rs
blob: c1572c00d57a479719c17bb509e246d8c14fcce8 [
file
] [
log
] [
blame
]
// rustfmt-version: Two
fn
main
()
{
thread
::
spawn
(||
{
while
true
{
println
!(
"iteration"
);
}
});
thread
::
spawn
(||
loop
{
println
!(
"iteration"
);
});
}