Sign in
rust
/
rust
/
08cd08fbef8c6663b052d8d9e4930d5696cbb8a7
/
.
/
src
/
tools
/
rustfmt
/
tests
/
target
/
issue-3227
/
two.rs
blob: ae7eee4719412133b7fe6e9fc9a72236df2d788c [
file
]
// rustfmt-style_edition: 2024
fn
main
()
{
thread
::
spawn
(||
{
while
true
{
println
!(
"iteration"
);
}
});
thread
::
spawn
(||
{
loop
{
println
!(
"iteration"
);
}
});
}