blob: 2922bfdfef7691b14ebb72be0e7c7793ca4f2c1f [file] [log] [blame]
// rustfmt-style_edition: 2015
fn main() {
thread::spawn(|| {
while true {
println!("iteration");
}
});
thread::spawn(|| loop {
println!("iteration");
});
}