Skip to content

Commit 2cf5ba1

Browse files
committed
---
yaml --- r: 1281 b: refs/heads/master c: b361b1e h: refs/heads/master i: 1279: 74f4be3 v: v3
1 parent 8176424 commit 2cf5ba1

File tree

3 files changed

+10
-3
lines changed

3 files changed

+10
-3
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: 90e329da6b263cde1fc286e2c4aa6d062a6acf8a
2+
refs/heads/master: b361b1ee8c29ae15fa8672aec06ee7d7e208a1b4

trunk/src/Makefile

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -440,6 +440,9 @@ TEST_XFAILS_RUSTC := $(filter-out \
440440
drop-bind-thunk-args.rs \
441441
drop-on-ret.rs \
442442
fact.rs \
443+
fn-lval.rs \
444+
fun-call-variants.rs \
445+
fun-indirect-call.rs \
443446
generic-fn-infer.rs \
444447
generic-drop-glue.rs \
445448
generic-tup.rs \
@@ -453,17 +456,21 @@ TEST_XFAILS_RUSTC := $(filter-out \
453456
import5.rs \
454457
import6.rs \
455458
import7.rs \
459+
integral-indexing.rs \
456460
item-name-overload.rs \
457461
large-records.rs \
458462
lazy-init.rs \
459463
lazy-and-or.rs \
460464
linear-for-loop.rs \
461465
multiline-comment.rs \
466+
mutual-recursion-group.rs \
462467
obj-drop.rs \
463468
obj-recursion.rs \
464469
obj-with-vec.rs \
465470
operator-associativity.rs \
471+
opeq.rs \
466472
output-slot-variants.rs \
473+
over-constrained-vregs.rs \
467474
readalias.rs \
468475
rec.rs \
469476
rec-auto.rs \

trunk/src/test/run-pass/mlist.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22

33
tag mlist {
44
cons(int,mutable @mlist);
5-
nil();
5+
nil;
66
}
77

88
fn main() {
9-
cons(10, @cons(11, @cons(12, @nil())));
9+
cons(10, @cons(11, @cons(12, @nil)));
1010
}

0 commit comments

Comments
 (0)