blob: 46cae33f102ec7b539df976ccf0eb7922c4988da [file] [log] [blame]
// check-pass
#![allow(unused_must_use)]
use std::thread;
fn _foo() {
thread::spawn(move || { // no need for -> ()
loop {
println!("hello");
}
}).join();
}
fn main() {}