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