rust/tests/ui/error-codes/E0642.stderr

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

37 lines
961 B
Plaintext
Raw Normal View History

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