File tree Expand file tree Collapse file tree 3 files changed +10
-3
lines changed Expand file tree Collapse file tree 3 files changed +10
-3
lines changed Original file line number Diff line number Diff line change 1
1
---
2
- refs/heads/master: 90e329da6b263cde1fc286e2c4aa6d062a6acf8a
2
+ refs/heads/master: b361b1ee8c29ae15fa8672aec06ee7d7e208a1b4
Original file line number Diff line number Diff line change @@ -440,6 +440,9 @@ TEST_XFAILS_RUSTC := $(filter-out \
440
440
drop-bind-thunk-args.rs \
441
441
drop-on-ret.rs \
442
442
fact.rs \
443
+ fn-lval.rs \
444
+ fun-call-variants.rs \
445
+ fun-indirect-call.rs \
443
446
generic-fn-infer.rs \
444
447
generic-drop-glue.rs \
445
448
generic-tup.rs \
@@ -453,17 +456,21 @@ TEST_XFAILS_RUSTC := $(filter-out \
453
456
import5.rs \
454
457
import6.rs \
455
458
import7.rs \
459
+ integral-indexing.rs \
456
460
item-name-overload.rs \
457
461
large-records.rs \
458
462
lazy-init.rs \
459
463
lazy-and-or.rs \
460
464
linear-for-loop.rs \
461
465
multiline-comment.rs \
466
+ mutual-recursion-group.rs \
462
467
obj-drop.rs \
463
468
obj-recursion.rs \
464
469
obj-with-vec.rs \
465
470
operator-associativity.rs \
471
+ opeq.rs \
466
472
output-slot-variants.rs \
473
+ over-constrained-vregs.rs \
467
474
readalias.rs \
468
475
rec.rs \
469
476
rec-auto.rs \
Original file line number Diff line number Diff line change 2
2
3
3
tag mlist {
4
4
cons( int, mutable @mlist) ;
5
- nil ( ) ;
5
+ nil;
6
6
}
7
7
8
8
fn main ( ) {
9
- cons ( 10 , @cons ( 11 , @cons ( 12 , @nil ( ) ) ) ) ;
9
+ cons ( 10 , @cons ( 11 , @cons ( 12 , @nil) ) ) ;
10
10
}
You can’t perform that action at this time.
0 commit comments