Sign in
rust
/
rustfmt
/
bedef9bd13c2f432584064b51a0d619b7974eb08
/
.
/
tests
/
source
/
issue-3227
/
two.rs
blob: 50c0ad47dc1779f0d61c027f7b67411adcbdd284 [
file
] [
log
] [
blame
]
// rustfmt-style_edition: 2024
fn
main
()
{
thread
::
spawn
(||
{
while
true
{
println
!(
"iteration"
);
}
});
thread
::
spawn
(||
loop
{
println
!(
"iteration"
);
});
}