@@ -2,49 +2,33 @@ error: duplicate matcher binding
22 --> $DIR/macro-multiple-matcher-bindings.rs:7:16
33 |
44LL | ($a:ident, $a:ident) => {};
5- | ^^^^^^^^
6- |
7- note: previous declaration was here
8- --> $DIR/macro-multiple-matcher-bindings.rs:7:6
9- |
10- LL | ($a:ident, $a:ident) => {};
11- | ^^^^^^^^
5+ | -------- ^^^^^^^^ duplicate binding
6+ | |
7+ | previous binding
128
139error: duplicate matcher binding
1410 --> $DIR/macro-multiple-matcher-bindings.rs:8:16
1511 |
1612LL | ($a:ident, $a:path) => {};
17- | ^^^^^^^
18- |
19- note: previous declaration was here
20- --> $DIR/macro-multiple-matcher-bindings.rs:8:6
21- |
22- LL | ($a:ident, $a:path) => {};
23- | ^^^^^^^^
13+ | -------- ^^^^^^^ duplicate binding
14+ | |
15+ | previous binding
2416
2517error: duplicate matcher binding
2618 --> $DIR/macro-multiple-matcher-bindings.rs:17:18
2719 |
2820LL | ($a:ident, $($a:ident),*) => {};
29- | ^^^^^^^^
30- |
31- note: previous declaration was here
32- --> $DIR/macro-multiple-matcher-bindings.rs:17:6
33- |
34- LL | ($a:ident, $($a:ident),*) => {};
35- | ^^^^^^^^
21+ | -------- ^^^^^^^^ duplicate binding
22+ | |
23+ | previous binding
3624
3725error: duplicate matcher binding
3826 --> $DIR/macro-multiple-matcher-bindings.rs:18:25
3927 |
4028LL | ($($a:ident)+ # $($($a:path),+);*) => {};
41- | ^^^^^^^
42- |
43- note: previous declaration was here
44- --> $DIR/macro-multiple-matcher-bindings.rs:18:8
45- |
46- LL | ($($a:ident)+ # $($($a:path),+);*) => {};
47- | ^^^^^^^^
29+ | -------- ^^^^^^^ duplicate binding
30+ | |
31+ | previous binding
4832
4933error: aborting due to 4 previous errors
5034
0 commit comments