aboutsummaryrefslogtreecommitdiff
path: root/src/test/run-pass/basic-1.rs
blob: 6f9d62674cfed9e12775286f0ee39387bf127726 (plain) (blame)
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
27
28
// xfail-stage0
// xfail-stage1
// xfail-stage2
// -*- 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;
    n <- p;
    n <- p;
//    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;
}