Sign in
fuchsia
/
third_party
/
rust
/
5a2fceefd312ec027bdeaa89ebefbe4c33d94de1
/
.
/
src
/
tools
/
rustfmt
/
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"
);
});
}