File tree Expand file tree Collapse file tree 2 files changed +5
-1
lines changed Expand file tree Collapse file tree 2 files changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -474,10 +474,12 @@ TEST_XFAILS_RUSTC := $(filter-out \
474
474
fun-indirect-call.rs \
475
475
generic-fn.rs \
476
476
generic-fn-infer.rs \
477
+ generic-exterior-box.rs \
477
478
generic-drop-glue.rs \
478
479
generic-obj.rs \
479
480
generic-tup.rs \
480
481
generic-type.rs \
482
+ generic-type-synonym.rs \
481
483
hello.rs \
482
484
int.rs \
483
485
i32-sub.rs \
@@ -489,6 +491,7 @@ TEST_XFAILS_RUSTC := $(filter-out \
489
491
import6.rs \
490
492
import7.rs \
491
493
import8.rs \
494
+ inner-module.rs \
492
495
item-name-overload.rs \
493
496
large-records.rs \
494
497
lazy-init.rs \
@@ -505,6 +508,7 @@ TEST_XFAILS_RUSTC := $(filter-out \
505
508
opeq.rs \
506
509
output-slot-variants.rs \
507
510
over-constrained-vregs.rs \
511
+ path.rs \
508
512
readalias.rs \
509
513
rec.rs \
510
514
rec-auto.rs \
Original file line number Diff line number Diff line change 1
1
type foo [ T ] = tup ( T ) ;
2
2
type bar [ T ] = foo[ T ] ;
3
- fn takebar[ T ] ( bar[ T ] b) { }
3
+ fn takebar[ T ] ( & bar[ T ] b) { }
4
4
fn main ( ) { }
You can’t perform that action at this time.
0 commit comments