aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/Makefile4
-rw-r--r--src/test/run-pass/generic-type-synonym.rs2
2 files changed, 5 insertions, 1 deletions
diff --git a/src/Makefile b/src/Makefile
index 0c3bf6d3..02bd8708 100644
--- a/src/Makefile
+++ b/src/Makefile
@@ -474,10 +474,12 @@ TEST_XFAILS_RUSTC := $(filter-out \
fun-indirect-call.rs \
generic-fn.rs \
generic-fn-infer.rs \
+ generic-exterior-box.rs \
generic-drop-glue.rs \
generic-obj.rs \
generic-tup.rs \
generic-type.rs \
+ generic-type-synonym.rs \
hello.rs \
int.rs \
i32-sub.rs \
@@ -489,6 +491,7 @@ TEST_XFAILS_RUSTC := $(filter-out \
import6.rs \
import7.rs \
import8.rs \
+ inner-module.rs \
item-name-overload.rs \
large-records.rs \
lazy-init.rs \
@@ -505,6 +508,7 @@ TEST_XFAILS_RUSTC := $(filter-out \
opeq.rs \
output-slot-variants.rs \
over-constrained-vregs.rs \
+ path.rs \
readalias.rs \
rec.rs \
rec-auto.rs \
diff --git a/src/test/run-pass/generic-type-synonym.rs b/src/test/run-pass/generic-type-synonym.rs
index 4ddc8946..c3d2a9d5 100644
--- a/src/test/run-pass/generic-type-synonym.rs
+++ b/src/test/run-pass/generic-type-synonym.rs
@@ -1,4 +1,4 @@
type foo[T] = tup(T);
type bar[T] = foo[T];
-fn takebar[T](bar[T] b) {}
+fn takebar[T](&bar[T] b) {}
fn main() {} \ No newline at end of file