|
| 1 | +error: duplicate matcher binding |
| 2 | + --> $DIR/macro-multiple-matcher-bindings.rs:5:16 |
| 3 | + | |
| 4 | +LL | ($a:ident, $a:ident) => {}; //~ERROR duplicate matcher binding |
| 5 | + | ^^^^^^^^ |
| 6 | + | |
| 7 | +note: previous declaration was here |
| 8 | + --> $DIR/macro-multiple-matcher-bindings.rs:5:6 |
| 9 | + | |
| 10 | +LL | ($a:ident, $a:ident) => {}; //~ERROR duplicate matcher binding |
| 11 | + | ^^^^^^^^ |
| 12 | + |
| 13 | +error: duplicate matcher binding |
| 14 | + --> $DIR/macro-multiple-matcher-bindings.rs:6:16 |
| 15 | + | |
| 16 | +LL | ($a:ident, $a:path) => {}; //~ERROR duplicate matcher binding |
| 17 | + | ^^^^^^^ |
| 18 | + | |
| 19 | +note: previous declaration was here |
| 20 | + --> $DIR/macro-multiple-matcher-bindings.rs:6:6 |
| 21 | + | |
| 22 | +LL | ($a:ident, $a:path) => {}; //~ERROR duplicate matcher binding |
| 23 | + | ^^^^^^^^ |
| 24 | + |
| 25 | +error: duplicate matcher binding |
| 26 | + --> $DIR/macro-multiple-matcher-bindings.rs:15:18 |
| 27 | + | |
| 28 | +LL | ($a:ident, $($a:ident),*) => {}; //~ERROR duplicate matcher binding |
| 29 | + | ^^^^^^^^ |
| 30 | + | |
| 31 | +note: previous declaration was here |
| 32 | + --> $DIR/macro-multiple-matcher-bindings.rs:15:6 |
| 33 | + | |
| 34 | +LL | ($a:ident, $($a:ident),*) => {}; //~ERROR duplicate matcher binding |
| 35 | + | ^^^^^^^^ |
| 36 | + |
| 37 | +error: duplicate matcher binding |
| 38 | + --> $DIR/macro-multiple-matcher-bindings.rs:16:25 |
| 39 | + | |
| 40 | +LL | ($($a:ident)+ # $($($a:path),+);*) => {}; //~ERROR duplicate matcher binding |
| 41 | + | ^^^^^^^ |
| 42 | + | |
| 43 | +note: previous declaration was here |
| 44 | + --> $DIR/macro-multiple-matcher-bindings.rs:16:8 |
| 45 | + | |
| 46 | +LL | ($($a:ident)+ # $($($a:path),+);*) => {}; //~ERROR duplicate matcher binding |
| 47 | + | ^^^^^^^^ |
| 48 | + |
| 49 | +error: aborting due to 4 previous errors |
| 50 | + |
0 commit comments