Skip to content

Commit

Permalink
Update the compile-fail-fulldeps tests with new isize/usize literal s…
Browse files Browse the repository at this point in the history
…uffixes.
  • Loading branch information
pnkfelix authored and nikomatsakis committed Jan 8, 2015
1 parent 2259fe1 commit b2e93e2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/test/compile-fail-fulldeps/issue-18986.rs
Expand Up @@ -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
}
}

0 comments on commit b2e93e2

Please sign in to comment.