rust/src/test/run-pass/comm.rs

25 lines
398 B
Rust
Raw Normal View History

2010-06-23 23:03:09 -05:00
// -*- rust -*-
use std;
import comm;
import comm::chan;
import comm::send;
import comm::recv;
import task;
2011-04-19 15:35:49 -05:00
fn main() {
let p = comm::port();
2012-01-04 23:14:53 -06:00
let ch = comm::chan(p);
2012-06-30 18:19:07 -05:00
let t = task::spawn(|| child(ch) );
let y = recv(p);
#error("received");
log(error, y);
2011-07-27 07:19:39 -05:00
assert (y == 10);
2010-06-23 23:03:09 -05:00
}
2011-10-20 22:34:04 -05:00
fn child(c: chan<int>) {
#error("sending");
send(c, 10);
#error("value sent");
}