Skip to content

Commit 0572f47

Browse files
brsongraydon
authored andcommitted
---
yaml --- r: 1859 b: refs/heads/master c: ef1bcde h: refs/heads/master i: 1857: 5b55090 1855: 40c883d v: v3
1 parent d6a6afa commit 0572f47

File tree

3 files changed

+16
-1
lines changed

3 files changed

+16
-1
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
---
2-
refs/heads/master: 77a3373d53e3b0d1b87135b21307f19922398af9
2+
refs/heads/master: ef1bcdea7025f6fd18fcd645804f83186546fa97

trunk/Makefile.in

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -653,6 +653,7 @@ TEST_XFAILS_STAGE0 := $(FLOAT_XFAILS) \
653653
clone-with-exterior.rs \
654654
comm.rs \
655655
constrained-type.rs \
656+
decl-with-recv.rs \
656657
destructor-ordering.rs \
657658
iter-ret.rs \
658659
lazychan.rs \
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
// -*- rust -*-
2+
3+
impure fn main() {
4+
let port[int] po = port();
5+
let chan[int] ch = chan(po);
6+
7+
ch <| 10;
8+
let int i <- po;
9+
check (i == 10);
10+
11+
ch <| 11;
12+
auto j <- po;
13+
check (j == 11);
14+
}

0 commit comments

Comments
 (0)