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

25 lines
400 B
Rust
Raw Normal View History

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