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