]> git.lizzy.rs Git - rust.git/blob - src/test/run-pass/spawn2.rs
cleanup: s/impl Copy/#[derive(Copy)]/g
[rust.git] / src / test / run-pass / spawn2.rs
1 // Copyright 2012 The Rust Project Developers. See the COPYRIGHT
2 // file at the top-level directory of this distribution and at
3 // http://rust-lang.org/COPYRIGHT.
4 //
5 // Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6 // http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7 // <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8 // option. This file may not be copied, modified, or distributed
9 // except according to those terms.
10
11 use std::thread::Thread;
12
13 pub fn main() {
14     let t = Thread::scoped(move|| child((10, 20, 30, 40, 50, 60, 70, 80, 90)) );
15     t.join().ok().unwrap();
16 }
17
18 fn child(args: (int, int, int, int, int, int, int, int, int)) {
19     let (i1, i2, i3, i4, i5, i6, i7, i8, i9) = args;
20     println!("{}", i1);
21     println!("{}", i2);
22     println!("{}", i3);
23     println!("{}", i4);
24     println!("{}", i5);
25     println!("{}", i6);
26     println!("{}", i7);
27     println!("{}", i8);
28     println!("{}", i9);
29     assert_eq!(i1, 10);
30     assert_eq!(i2, 20);
31     assert_eq!(i3, 30);
32     assert_eq!(i4, 40);
33     assert_eq!(i5, 50);
34     assert_eq!(i6, 60);
35     assert_eq!(i7, 70);
36     assert_eq!(i8, 80);
37     assert_eq!(i9, 90);
38 }