Skip to content

Commit aa1ce32

Browse files
committed
update test output
1 parent dabe86d commit aa1ce32

File tree

1 file changed

+60
-12
lines changed

1 file changed

+60
-12
lines changed

src/test/ui/issues/issue-5067.stderr

+60-12
Original file line numberDiff line numberDiff line change
@@ -1,62 +1,110 @@
11
error: repetition matches empty token tree
2-
--> $DIR/issue-5067.rs:4:8
2+
--> $DIR/issue-5067.rs:9:8
33
|
44
LL | ( $()* ) => {};
55
| ^^
66

77
error: repetition matches empty token tree
8-
--> $DIR/issue-5067.rs:6:8
8+
--> $DIR/issue-5067.rs:11:8
99
|
1010
LL | ( $()+ ) => {};
1111
| ^^
1212

1313
error: repetition matches empty token tree
14-
--> $DIR/issue-5067.rs:12:9
14+
--> $DIR/issue-5067.rs:13:8
15+
|
16+
LL | ( $()? ) => {};
17+
| ^^
18+
19+
error: repetition matches empty token tree
20+
--> $DIR/issue-5067.rs:18:9
1521
|
1622
LL | ( [$()*] ) => {};
1723
| ^^
1824

1925
error: repetition matches empty token tree
20-
--> $DIR/issue-5067.rs:14:9
26+
--> $DIR/issue-5067.rs:20:9
2127
|
2228
LL | ( [$()+] ) => {};
2329
| ^^
2430

2531
error: repetition matches empty token tree
26-
--> $DIR/issue-5067.rs:20:8
32+
--> $DIR/issue-5067.rs:22:9
33+
|
34+
LL | ( [$()?] ) => {};
35+
| ^^
36+
37+
error: repetition matches empty token tree
38+
--> $DIR/issue-5067.rs:27:8
2739
|
2840
LL | ( $($()* $(),* $(a)* $(a),* )* ) => {};
2941
| ^^^^^^^^^^^^^^^^^^^^^^^^^^
3042

3143
error: repetition matches empty token tree
32-
--> $DIR/issue-5067.rs:22:8
44+
--> $DIR/issue-5067.rs:29:8
3345
|
3446
LL | ( $($()* $(),* $(a)* $(a),* )+ ) => {};
3547
| ^^^^^^^^^^^^^^^^^^^^^^^^^^
3648

3749
error: repetition matches empty token tree
38-
--> $DIR/issue-5067.rs:28:12
50+
--> $DIR/issue-5067.rs:31:8
51+
|
52+
LL | ( $($()* $(),* $(a)* $(a),* )? ) => {};
53+
| ^^^^^^^^^^^^^^^^^^^^^^^^^^
54+
55+
error: repetition matches empty token tree
56+
--> $DIR/issue-5067.rs:33:8
57+
|
58+
LL | ( $($()? $(),* $(a)? $(a),* )* ) => {};
59+
| ^^^^^^^^^^^^^^^^^^^^^^^^^^
60+
61+
error: repetition matches empty token tree
62+
--> $DIR/issue-5067.rs:35:8
63+
|
64+
LL | ( $($()? $(),* $(a)? $(a),* )+ ) => {};
65+
| ^^^^^^^^^^^^^^^^^^^^^^^^^^
66+
67+
error: repetition matches empty token tree
68+
--> $DIR/issue-5067.rs:37:8
69+
|
70+
LL | ( $($()? $(),* $(a)? $(a),* )? ) => {};
71+
| ^^^^^^^^^^^^^^^^^^^^^^^^^^
72+
73+
error: repetition matches empty token tree
74+
--> $DIR/issue-5067.rs:47:12
3975
|
4076
LL | ( $(a $()+)* ) => {};
4177
| ^^
4278

4379
error: repetition matches empty token tree
44-
--> $DIR/issue-5067.rs:30:12
80+
--> $DIR/issue-5067.rs:49:12
4581
|
4682
LL | ( $(a $()*)+ ) => {};
4783
| ^^
4884

4985
error: repetition matches empty token tree
50-
--> $DIR/issue-5067.rs:38:18
86+
--> $DIR/issue-5067.rs:51:12
87+
|
88+
LL | ( $(a $()+)? ) => {};
89+
| ^^
90+
91+
error: repetition matches empty token tree
92+
--> $DIR/issue-5067.rs:53:12
93+
|
94+
LL | ( $(a $()?)+ ) => {};
95+
| ^^
96+
97+
error: repetition matches empty token tree
98+
--> $DIR/issue-5067.rs:60:18
5199
|
52100
LL | (a $e1:expr $($(, a $e2:expr)*)*) => ([$e1 $($(, $e2)*)*]);
53101
| ^^^^^^^^^^^^^^^^^^
54102

55103
error: repetition matches empty token tree
56-
--> $DIR/issue-5067.rs:50:8
104+
--> $DIR/issue-5067.rs:71:8
57105
|
58-
LL | ( $()* ) => {}
106+
LL | ( $()* ) => {};
59107
| ^^
60108

61-
error: aborting due to 10 previous errors
109+
error: aborting due to 18 previous errors
62110

0 commit comments

Comments
 (0)