Update compile-fail tests to use is/us, not i/u.

This commit is contained in:
Huon Wilson
2015-01-08 22:05:56 +11:00
committed by Niko Matsakis
parent 85f961e2cc
commit 441044f071
194 changed files with 379 additions and 379 deletions

View File

@@ -13,6 +13,6 @@ fn func((1, (Some(1), 2...3)): (isize, (Option<isize>, isize))) { }
//~^ ERROR refutable pattern in function argument: `(_, _)` not covered
fn main() {
let (1i, (Some(1i), 2i...3i)) = (1i, (None, 2i));
let (1is, (Some(1is), 2is...3is)) = (1is, (None, 2is));
//~^ ERROR refutable pattern in local binding: `(_, _)` not covered
}