rust/src/test/run-pass/unique-send-2.rs
2012-05-26 02:28:00 -07:00

27 lines
481 B
Rust

use std;
import comm;
import task;
import uint;
fn child(c: comm::chan<~uint>, i: uint) {
comm::send(c, ~i);
}
fn main() {
let p = comm::port();
let ch = comm::chan(p);
let n = 100u;
let mut expected = 0u;
for uint::range(0u, n) {|i|
task::spawn {|| child(ch, i); };
expected += i;
}
let mut actual = 0u;
for uint::range(0u, n) {|_i|
let j = comm::recv(p);
actual += *j;
}
assert expected == actual;
}