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