summaryrefslogtreecommitdiffstats
path: root/src/test/ui/threads-sendsync/spawn.rs
blob: b1dcc9417fb07459b8b77585e151e45cbfd779e8 (plain)
1
2
3
4
5
6
7
8
9
10
// 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); }