]> git.lizzy.rs Git - rust.git/blob - src/test/ui/macros/macro-multiple-matcher-bindings.stderr
65362388d7de168a2e3c6ba414278fd068d90cc7
[rust.git] / src / test / ui / macros / macro-multiple-matcher-bindings.stderr
1 error: duplicate matcher binding
2   --> $DIR/macro-multiple-matcher-bindings.rs:7:16
3    |
4 LL |     ($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    |      ^^^^^^^^
12
13 error: duplicate matcher binding
14   --> $DIR/macro-multiple-matcher-bindings.rs:8:16
15    |
16 LL |     ($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    |      ^^^^^^^^
24
25 error: duplicate matcher binding
26   --> $DIR/macro-multiple-matcher-bindings.rs:17:18
27    |
28 LL |     ($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    |      ^^^^^^^^
36
37 error: duplicate matcher binding
38   --> $DIR/macro-multiple-matcher-bindings.rs:18:25
39    |
40 LL |     ($($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    |        ^^^^^^^^
48
49 error: aborting due to 4 previous errors
50