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

17 lines
197 B
Rust
Raw Normal View History

2010-06-23 23:03:09 -05:00
// -*- rust -*-
io fn main() {
let port[int] p = port();
spawn child(chan(p));
let int y;
y <- p;
log "received";
log y;
check (y == 10);
}
io fn child(chan[int] c) {
c <| 10;
}