blob: c7b344b9f758177587967f9607aad45db288792e (
plain)
1
2
3
4
5
6
7
8
9
10
|
//@ run-pass
//@ needs-threads
use std::thread;
pub fn main() {
thread::spawn(move|| child(10)).join().ok().unwrap();
}
fn child(i: isize) { println!("{}", i); assert_eq!(i, 10); }
|