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

24 lines
290 B
Rust
Raw Normal View History

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