2018-08-11 20:25:48 +00:00
|
|
|
error[E0642]: patterns aren't allowed in methods without bodies
|
2020-07-02 05:32:12 +00:00
|
|
|
--> $DIR/E0642.rs:9:12
|
2018-08-04 01:23:21 +00:00
|
|
|
|
|
2019-03-09 12:03:44 +00:00
|
|
|
LL | fn foo((x, y): (i32, i32));
|
2018-08-06 17:14:57 +00:00
|
|
|
| ^^^^^^
|
2019-10-24 05:20:58 +00:00
|
|
|
|
|
2018-08-09 22:23:08 +00:00
|
|
|
help: give this argument a name or use an underscore to ignore it
|
2018-08-06 17:14:57 +00:00
|
|
|
|
|
2019-03-09 12:03:44 +00:00
|
|
|
LL | fn foo(_: (i32, i32));
|
2021-06-22 02:07:19 +00:00
|
|
|
| ~
|
2018-08-06 17:14:57 +00:00
|
|
|
|
2018-08-11 20:25:48 +00:00
|
|
|
error[E0642]: patterns aren't allowed in methods without bodies
|
2020-07-02 05:32:12 +00:00
|
|
|
--> $DIR/E0642.rs:11:12
|
2018-08-06 17:14:57 +00:00
|
|
|
|
|
2019-03-09 12:03:44 +00:00
|
|
|
LL | fn bar((x, y): (i32, i32)) {}
|
2018-08-06 17:14:57 +00:00
|
|
|
| ^^^^^^
|
2019-10-24 05:20:58 +00:00
|
|
|
|
|
2018-08-09 22:23:08 +00:00
|
|
|
help: give this argument a name or use an underscore to ignore it
|
2018-08-06 17:14:57 +00:00
|
|
|
|
|
2019-03-09 12:03:44 +00:00
|
|
|
LL | fn bar(_: (i32, i32)) {}
|
2021-06-22 02:07:19 +00:00
|
|
|
| ~
|
2018-08-04 01:23:21 +00:00
|
|
|
|
2019-01-01 16:14:00 +00:00
|
|
|
error[E0642]: patterns aren't allowed in methods without bodies
|
2020-07-02 05:32:12 +00:00
|
|
|
--> $DIR/E0642.rs:13:15
|
2019-01-01 16:14:00 +00:00
|
|
|
|
|
2019-03-09 12:03:44 +00:00
|
|
|
LL | fn method(S { .. }: S) {}
|
2019-01-01 16:14:00 +00:00
|
|
|
| ^^^^^^^^
|
2019-10-24 05:20:58 +00:00
|
|
|
|
|
2019-01-01 16:14:00 +00:00
|
|
|
help: give this argument a name or use an underscore to ignore it
|
|
|
|
|
|
2019-03-09 12:03:44 +00:00
|
|
|
LL | fn method(_: S) {}
|
2021-06-22 02:07:19 +00:00
|
|
|
| ~
|
2019-01-01 16:14:00 +00:00
|
|
|
|
|
|
|
error: aborting due to 3 previous errors
|
2018-08-04 01:23:21 +00:00
|
|
|
|
2018-08-10 00:49:45 +00:00
|
|
|
For more information about this error, try `rustc --explain E0642`.
|