rust/tests/ui/no-patterns-in-args-macro.stderr

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

23 lines
752 B
Plaintext
Raw Normal View History

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