Skip to content

Commit b361b1e

Browse files
committed
Un-XFAIL 7 tests that have begun working on rustc lately. Fix one bug in mlist.rs.
1 parent 90e329d commit b361b1e

File tree

2 files changed

+9
-2
lines changed

2 files changed

+9
-2
lines changed

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 \

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)