Skip to content

Commit bfd95e1

Browse files
Bless duplicate test
1 parent 4c1d317 commit bfd95e1

File tree

1 file changed

+9
-3
lines changed

1 file changed

+9
-3
lines changed

src/test/ui/macros/macro-pat2021-pattern-followed-by-or.stderr

+9-3
Original file line numberDiff line numberDiff line change
@@ -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
|
44
LL | 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

911
error: `$x:pat` is followed by `|`, which is not allowed for `pat` fragments
1012
--> $DIR/macro-pat2021-pattern-followed-by-or.rs:7:28
1113
|
1214
LL | 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

1721
error: `$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
|
2024
LL | ( $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

Comments
 (0)