From 7444d07154652c4d7a3e91e645eaa604a8bc4c84 Mon Sep 17 00:00:00 2001 From: Andrew Cann Date: Sat, 4 Feb 2017 14:03:28 +0800 Subject: [PATCH] Fix test --- src/librustc_driver/test.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/librustc_driver/test.rs b/src/librustc_driver/test.rs index 41e5a4d53122..5481de1811d7 100644 --- a/src/librustc_driver/test.rs +++ b/src/librustc_driver/test.rs @@ -819,7 +819,7 @@ fn walk_ty_skip_subtree() { let int_ty = tcx.types.isize; let uint_ty = tcx.types.usize; let tup1_ty = tcx.intern_tup(&[int_ty, uint_ty, int_ty, uint_ty], false); - let tup2_ty = tcx.intern_tup(&[tup1_ty, tup1_ty, uint_ty]); + let tup2_ty = tcx.intern_tup(&[tup1_ty, tup1_ty, uint_ty], false); // types we expect to see (in order), plus a boolean saying // whether to skip the subtree.