rust/src/test/run-pass/basic-1.rs

26 lines
384 B
Rust
Raw Normal View History

// xfail-stage0
2010-08-09 08:53:37 -05:00
// -*- rust -*-
2011-04-19 15:35:49 -05:00
fn a(chan[int] c) {
2010-08-09 08:53:37 -05:00
c <| 10;
}
2011-04-19 15:35:49 -05:00
fn main() {
2010-08-09 08:53:37 -05:00
let port[int] p = port();
spawn a(chan(p));
spawn b(chan(p));
let int n = 0;
p |> n;
p |> n;
2010-08-09 08:53:37 -05:00
// log "Finished.";
}
2011-04-19 15:35:49 -05:00
fn b(chan[int] c) {
2010-08-09 08:53:37 -05:00
// log "task b0";
// log "task b1";
// log "task b2";
// log "task b3";
// log "task b4";
// log "task b5";
c <| 10;
}