Skip to content

Commit b7dfbc9

Browse files
committed
Fix bug in test and un-XFAIL 4 tests now passing on rustc.
1 parent 71e3ac8 commit b7dfbc9

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

src/Makefile

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -474,10 +474,12 @@ TEST_XFAILS_RUSTC := $(filter-out \
474474
fun-indirect-call.rs \
475475
generic-fn.rs \
476476
generic-fn-infer.rs \
477+
generic-exterior-box.rs \
477478
generic-drop-glue.rs \
478479
generic-obj.rs \
479480
generic-tup.rs \
480481
generic-type.rs \
482+
generic-type-synonym.rs \
481483
hello.rs \
482484
int.rs \
483485
i32-sub.rs \
@@ -489,6 +491,7 @@ TEST_XFAILS_RUSTC := $(filter-out \
489491
import6.rs \
490492
import7.rs \
491493
import8.rs \
494+
inner-module.rs \
492495
item-name-overload.rs \
493496
large-records.rs \
494497
lazy-init.rs \
@@ -505,6 +508,7 @@ TEST_XFAILS_RUSTC := $(filter-out \
505508
opeq.rs \
506509
output-slot-variants.rs \
507510
over-constrained-vregs.rs \
511+
path.rs \
508512
readalias.rs \
509513
rec.rs \
510514
rec-auto.rs \
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
type foo[T] = tup(T);
22
type bar[T] = foo[T];
3-
fn takebar[T](bar[T] b) {}
3+
fn takebar[T](&bar[T] b) {}
44
fn main() {}

0 commit comments

Comments
 (0)