@@ -2,23 +2,29 @@ error: `$x:pat` is followed by `|`, which is not allowed for `pat` fragments
22 --> $DIR/macro-pat2021-pattern-followed-by-or.rs:4:28
33 |
44LL | macro_rules! foo { ($x:pat | $y:pat) => {} }
5- | ^ not allowed after `pat` fragments
5+ | ------ ^ not allowed after `pat` fragments
6+ | |
7+ | help: try a `pat_param` fragment specifier instead: `$x:pat_param`
68 |
79 = note: allowed there are: `=>`, `,`, `=`, `if` or `in`
810
911error: `$x:pat` is followed by `|`, which is not allowed for `pat` fragments
1012 --> $DIR/macro-pat2021-pattern-followed-by-or.rs:7:28
1113 |
1214LL | macro_rules! ogg { ($x:pat | $y:pat_param) => {} }
13- | ^ not allowed after `pat` fragments
15+ | ------ ^ not allowed after `pat` fragments
16+ | |
17+ | help: try a `pat_param` fragment specifier instead: `$x:pat_param`
1418 |
1519 = note: allowed there are: `=>`, `,`, `=`, `if` or `in`
1620
1721error: `$pat:pat` may be followed by `|`, which is not allowed for `pat` fragments
1822 --> $DIR/macro-pat2021-pattern-followed-by-or.rs:9:35
1923 |
2024LL | ( $expr:expr , $( $( $pat:pat)|+ => $expr_arm:pat),+ ) => {
21- | ^ not allowed after `pat` fragments
25+ | -------- ^ not allowed after `pat` fragments
26+ | |
27+ | help: try a `pat_param` fragment specifier instead: `$pat:pat_param`
2228 |
2329 = note: allowed there are: `=>`, `,`, `=`, `if` or `in`
2430
0 commit comments