summary refs log tree commit diff
path: root/src/test/run-pass/decl-with-recv.rs
blob: 7cee261e1cbef01059e98daba989ad4b53c00bbe (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// -*- rust -*-

use std;
import comm::port;
import comm::chan;
import comm::send;
import comm::recv;

fn main() {
    let po = port();
    let ch = chan(po);
    send(ch, 10);
    let i = recv(po);
    assert (i == 10);
    send(ch, 11);
    let j = recv(po);
    assert (j == 11);
}