rust/src/test/ui/threads-sendsync/spawn.rs
2019-07-27 18:56:16 +03:00

10 lines
209 B
Rust

// run-pass
// ignore-emscripten no threads support
use std::thread;
pub fn main() {
thread::spawn(move|| child(10)).join().ok().unwrap();
}
fn child(i: isize) { println!("{}", i); assert_eq!(i, 10); }