2020-01-29 17:18:54 -06:00
|
|
|
error[E0642]: patterns aren't allowed in functions without bodies
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/no-patterns-in-args-macro.rs:20:8
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
|
|
|
LL | m!((bad, pat));
|
2020-01-29 17:18:54 -06:00
|
|
|
| ^^^^^^^^^^ pattern not allowed in function without body
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
|
|
error[E0561]: patterns aren't allowed in function pointer types
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/no-patterns-in-args-macro.rs:20:8
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
|
|
|
LL | m!((bad, pat));
|
|
|
|
| ^^^^^^^^^^
|
|
|
|
|
|
|
|
error[E0130]: patterns aren't allowed in foreign function declarations
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/no-patterns-in-args-macro.rs:20:8
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
|
|
|
LL | m!((bad, pat));
|
|
|
|
| ^^^^^^^^^^ pattern not allowed in foreign function
|
|
|
|
|
|
|
|
error: aborting due to 3 previous errors
|
|
|
|
|
2019-10-04 06:58:56 -05:00
|
|
|
Some errors have detailed explanations: E0130, E0561, E0642.
|
2018-08-08 07:28:26 -05:00
|
|
|
For more information about an error, try `rustc --explain E0130`.
|