|
1 | 1 | error: `?` macro repetition does not allow a separator
|
2 |
| - --> $DIR/macro-at-most-once-rep-ambig.rs:29:10 |
| 2 | + --> $DIR/macro-at-most-once-rep-ambig.rs:22:10 |
3 | 3 | |
|
4 | 4 | LL | ($(a),?) => {} //~ ERROR `?` macro repetition does not allow a separator
|
5 | 5 | | ^
|
6 | 6 |
|
7 | 7 | error: no rules expected the token `?`
|
8 |
| - --> $DIR/macro-at-most-once-rep-ambig.rs:43:11 |
| 8 | + --> $DIR/macro-at-most-once-rep-ambig.rs:36:11 |
9 | 9 | |
|
10 | 10 | LL | foo!(a?a?a); //~ ERROR no rules expected the token `?`
|
11 | 11 | | ^
|
12 | 12 |
|
13 | 13 | error: no rules expected the token `?`
|
14 |
| - --> $DIR/macro-at-most-once-rep-ambig.rs:44:11 |
| 14 | + --> $DIR/macro-at-most-once-rep-ambig.rs:37:11 |
15 | 15 | |
|
16 | 16 | LL | foo!(a?a); //~ ERROR no rules expected the token `?`
|
17 | 17 | | ^
|
18 | 18 |
|
19 | 19 | error: no rules expected the token `?`
|
20 |
| - --> $DIR/macro-at-most-once-rep-ambig.rs:45:11 |
| 20 | + --> $DIR/macro-at-most-once-rep-ambig.rs:38:11 |
21 | 21 | |
|
22 | 22 | LL | foo!(a?); //~ ERROR no rules expected the token `?`
|
23 | 23 | | ^
|
24 | 24 |
|
25 | 25 | error: unexpected end of macro invocation
|
26 |
| - --> $DIR/macro-at-most-once-rep-ambig.rs:46:5 |
| 26 | + --> $DIR/macro-at-most-once-rep-ambig.rs:39:5 |
27 | 27 | |
|
28 | 28 | LL | barplus!(); //~ ERROR unexpected end of macro invocation
|
29 | 29 | | ^^^^^^^^^^^
|
30 | 30 |
|
31 | 31 | error: unexpected end of macro invocation
|
32 |
| - --> $DIR/macro-at-most-once-rep-ambig.rs:47:5 |
| 32 | + --> $DIR/macro-at-most-once-rep-ambig.rs:40:5 |
33 | 33 | |
|
34 | 34 | LL | barstar!(); //~ ERROR unexpected end of macro invocation
|
35 | 35 | | ^^^^^^^^^^^
|
36 | 36 |
|
37 | 37 | error: no rules expected the token `?`
|
38 |
| - --> $DIR/macro-at-most-once-rep-ambig.rs:48:15 |
| 38 | + --> $DIR/macro-at-most-once-rep-ambig.rs:41:15 |
39 | 39 | |
|
40 | 40 | LL | barplus!(a?); //~ ERROR no rules expected the token `?`
|
41 | 41 | | ^
|
42 | 42 |
|
43 | 43 | error: unexpected end of macro invocation
|
44 |
| - --> $DIR/macro-at-most-once-rep-ambig.rs:49:14 |
| 44 | + --> $DIR/macro-at-most-once-rep-ambig.rs:42:14 |
45 | 45 | |
|
46 | 46 | LL | barplus!(a); //~ ERROR unexpected end of macro invocation
|
47 | 47 | | ^
|
48 | 48 |
|
49 | 49 | error: no rules expected the token `?`
|
50 |
| - --> $DIR/macro-at-most-once-rep-ambig.rs:50:15 |
| 50 | + --> $DIR/macro-at-most-once-rep-ambig.rs:43:15 |
51 | 51 | |
|
52 | 52 | LL | barstar!(a?); //~ ERROR no rules expected the token `?`
|
53 | 53 | | ^
|
54 | 54 |
|
55 | 55 | error: unexpected end of macro invocation
|
56 |
| - --> $DIR/macro-at-most-once-rep-ambig.rs:51:14 |
| 56 | + --> $DIR/macro-at-most-once-rep-ambig.rs:44:14 |
57 | 57 | |
|
58 | 58 | LL | barstar!(a); //~ ERROR unexpected end of macro invocation
|
59 | 59 | | ^
|
|
0 commit comments