2018-08-09 22:23:08 +00:00
|
|
|
error: patterns aren't allowed in trait methods
|
2018-08-04 01:23:21 +00:00
|
|
|
--> $DIR/E0642.rs:12:12
|
|
|
|
|
|
2018-08-06 17:14:57 +00:00
|
|
|
LL | fn foo((x, y): (i32, i32)); //~ ERROR patterns aren't allowed in trait methods
|
|
|
|
| ^^^^^^
|
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
|
|
|
|
|
|
|
|
LL | fn foo(_: (i32, i32)); //~ ERROR patterns aren't allowed in trait methods
|
|
|
|
| ^
|
|
|
|
|
2018-08-09 22:23:08 +00:00
|
|
|
error: patterns aren't allowed in trait methods
|
2018-08-06 17:14:57 +00:00
|
|
|
--> $DIR/E0642.rs:16:12
|
|
|
|
|
|
|
|
|
LL | fn bar((x, y): (i32, i32)) {} //~ ERROR patterns aren't allowed in trait methods
|
|
|
|
| ^^^^^^
|
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
|
|
|
|
|
|
|
|
LL | fn bar(_: (i32, i32)) {} //~ ERROR patterns aren't allowed in trait methods
|
|
|
|
| ^
|
2018-08-04 01:23:21 +00:00
|
|
|
|
2018-08-06 17:14:57 +00:00
|
|
|
error: aborting due to 2 previous errors
|
2018-08-04 01:23:21 +00:00
|
|
|
|