Skip to content

Commit 7444d07

Browse files
committed
Fix test
1 parent 40c9538 commit 7444d07

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/librustc_driver/test.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -819,7 +819,7 @@ fn walk_ty_skip_subtree() {
819819
let int_ty = tcx.types.isize;
820820
let uint_ty = tcx.types.usize;
821821
let tup1_ty = tcx.intern_tup(&[int_ty, uint_ty, int_ty, uint_ty], false);
822-
let tup2_ty = tcx.intern_tup(&[tup1_ty, tup1_ty, uint_ty]);
822+
let tup2_ty = tcx.intern_tup(&[tup1_ty, tup1_ty, uint_ty], false);
823823

824824
// types we expect to see (in order), plus a boolean saying
825825
// whether to skip the subtree.

0 commit comments

Comments
 (0)