diff options
| author | Andrew Cann <shum@canndrew.org> | 2017-02-04 14:03:28 +0800 |
|---|---|---|
| committer | Andrew Cann <shum@canndrew.org> | 2017-02-04 14:03:28 +0800 |
| commit | 7444d07154652c4d7a3e91e645eaa604a8bc4c84 (patch) | |
| tree | 2aadb7542c60c7402caac247df416d6998c0b622 | |
| parent | 40c9538d2cb391e6be11cb7c9ede9f302bef3d59 (diff) | |
| download | rust-7444d07154652c4d7a3e91e645eaa604a8bc4c84.tar.gz rust-7444d07154652c4d7a3e91e645eaa604a8bc4c84.zip | |
Fix test
| -rw-r--r-- | src/librustc_driver/test.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/librustc_driver/test.rs b/src/librustc_driver/test.rs index 41e5a4d5312..5481de1811d 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. |
