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

20 lines
240 B
Rust
Raw Normal View History

// xfail-stage0
// xfail-stage1
// xfail-stage2
2010-06-23 23:03:09 -05:00
// -*- rust -*-
2011-04-19 15:35:49 -05:00
fn main() {
2010-06-23 23:03:09 -05:00
let port[int] p = port();
spawn child(chan(p));
let int y;
y <- p;
log "received";
log y;
assert (y == 10);
2010-06-23 23:03:09 -05:00
}
2011-04-19 15:35:49 -05:00
fn child(chan[int] c) {
2010-06-23 23:03:09 -05:00
c <| 10;
}