]> git.lizzy.rs Git - rust.git/blob - src/test/run-pass/spawn2.rs
doc: remove incomplete sentence
[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::task;
12
13 pub fn main() { task::spawn(move|| child((10, 20, 30, 40, 50, 60, 70, 80, 90)) ); }
14
15 fn child(args: (int, int, int, int, int, int, int, int, int)) {
16     let (i1, i2, i3, i4, i5, i6, i7, i8, i9) = args;
17     println!("{}", i1);
18     println!("{}", i2);
19     println!("{}", i3);
20     println!("{}", i4);
21     println!("{}", i5);
22     println!("{}", i6);
23     println!("{}", i7);
24     println!("{}", i8);
25     println!("{}", i9);
26     assert_eq!(i1, 10);
27     assert_eq!(i2, 20);
28     assert_eq!(i3, 30);
29     assert_eq!(i4, 40);
30     assert_eq!(i5, 50);
31     assert_eq!(i6, 60);
32     assert_eq!(i7, 70);
33     assert_eq!(i8, 80);
34     assert_eq!(i9, 90);
35 }