Add E0642 to parser error

This commit is contained in:
varkor 2018-08-10 01:49:45 +01:00
parent e4c3b49fe7
commit 49e9c5fe90
2 changed files with 9 additions and 5 deletions

View file

@ -1,4 +1,4 @@
error: patterns aren't allowed in trait methods
error[E0642]: patterns aren't allowed in trait methods
--> $DIR/E0642.rs:12:12
|
LL | fn foo((x, y): (i32, i32)); //~ ERROR patterns aren't allowed in trait methods
@ -8,7 +8,7 @@ help: give this argument a name or use an underscore to ignore it
LL | fn foo(_: (i32, i32)); //~ ERROR patterns aren't allowed in trait methods
| ^
error: patterns aren't allowed in trait methods
error[E0642]: patterns aren't allowed in trait methods
--> $DIR/E0642.rs:16:12
|
LL | fn bar((x, y): (i32, i32)) {} //~ ERROR patterns aren't allowed in trait methods
@ -20,3 +20,4 @@ LL | fn bar(_: (i32, i32)) {} //~ ERROR patterns aren't allowed in trait met
error: aborting due to 2 previous errors
For more information about this error, try `rustc --explain E0642`.