rust/tests/ui/macros/macro-pat2021-pattern-followed-by-or.stderr

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

33 lines
1.4 KiB
Plaintext
Raw Normal View History

2021-04-28 02:15:59 +00:00
error: `$x:pat` is followed by `|`, which is not allowed for `pat` fragments
--> $DIR/macro-pat2021-pattern-followed-by-or.rs:4:28
2021-04-14 10:51:54 +00:00
|
2021-04-28 02:15:59 +00:00
LL | macro_rules! foo { ($x:pat | $y:pat) => {} }
2021-11-30 06:38:26 +00:00
| ------ ^ not allowed after `pat` fragments
| |
| help: try a `pat_param` fragment specifier instead: `$x:pat_param`
2021-04-14 10:51:54 +00:00
|
= note: allowed there are: `=>`, `,`, `=`, `if` or `in`
2021-04-28 02:15:59 +00:00
error: `$x:pat` is followed by `|`, which is not allowed for `pat` fragments
--> $DIR/macro-pat2021-pattern-followed-by-or.rs:7:28
2021-04-14 10:51:54 +00:00
|
2021-04-28 02:15:59 +00:00
LL | macro_rules! ogg { ($x:pat | $y:pat_param) => {} }
2021-11-30 06:38:26 +00:00
| ------ ^ not allowed after `pat` fragments
| |
| help: try a `pat_param` fragment specifier instead: `$x:pat_param`
2021-04-14 10:51:54 +00:00
|
= note: allowed there are: `=>`, `,`, `=`, `if` or `in`
2021-04-28 02:15:59 +00:00
error: `$pat:pat` may be followed by `|`, which is not allowed for `pat` fragments
--> $DIR/macro-pat2021-pattern-followed-by-or.rs:9:35
2021-04-14 10:51:54 +00:00
|
2021-04-28 02:15:59 +00:00
LL | ( $expr:expr , $( $( $pat:pat)|+ => $expr_arm:pat),+ ) => {
2021-11-30 06:38:26 +00:00
| -------- ^ not allowed after `pat` fragments
| |
| help: try a `pat_param` fragment specifier instead: `$pat:pat_param`
2021-04-14 10:51:54 +00:00
|
= note: allowed there are: `=>`, `,`, `=`, `if` or `in`
error: aborting due to 3 previous errors