Update the compile-fail-fulldeps tests with new isize/usize literal suffixes.

This commit is contained in:
Felix S. Klock II 2015-01-08 15:09:03 +01:00 committed by Niko Matsakis
parent 2259fe1214
commit b2e93e2767

View File

@ -15,6 +15,6 @@ pub use use_from_trait_xc::Trait;
fn main() {
match () {
Trait { x: 42u } => () //~ ERROR use of trait `Trait` in a struct pattern
Trait { x: 42us } => () //~ ERROR use of trait `Trait` in a struct pattern
}
}