blob: 5697eea43b3ff848faf2eebf2497ab07422831c8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
// xfail-stage0
// -*- rust -*-
impure fn a(chan[int] c) {
c <| 10;
}
impure fn main() {
let port[int] p = port();
spawn a(chan(p));
spawn b(chan(p));
let int n = 0;
n <- p;
n <- p;
// log "Finished.";
}
impure 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;
}
|