blob: c1572c00d57a479719c17bb509e246d8c14fcce8 [file] [log] [blame]
// rustfmt-version: Two
fn main() {
thread::spawn(|| {
while true {
println!("iteration");
}
});
thread::spawn(|| loop {
println!("iteration");
});
}