rust/src/test/run-pass/basic-1.rs
2011-06-22 08:35:02 -07:00

26 lines
384 B
Rust

// xfail-stage0
// -*- rust -*-
fn a(chan[int] c) {
c <| 10;
}
fn main() {
let port[int] p = port();
spawn a(chan(p));
spawn b(chan(p));
let int n = 0;
p |> n;
p |> n;
// log "Finished.";
}
fn b(chan[int] c) {
// log "task b0";
// log "task b1";
// log "task b2";
// log "task b3";
// log "task b4";
// log "task b5";
c <| 10;
}