2018-08-03 20:23:21 -05:00
|
|
|
error[E0642]: patterns aren't allowed in methods without bodies
|
|
|
|
--> $DIR/E0642.rs:12:12
|
|
|
|
|
|
|
|
|
LL | fn foo((x, y): (i32, i32)); //~ ERROR patterns aren't allowed in methods without bodies
|
2018-08-04 05:48:33 -05:00
|
|
|
| ^^^^^^ help: use an underscore to ignore the name: `_`
|
2018-08-03 20:23:21 -05:00
|
|
|
|
|
|
|
error: aborting due to previous error
|
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0642`.
|