]> git.lizzy.rs Git - rust.git/blob - src/test/ui/issues/issue-5067.stderr
Auto merge of #95380 - compiler-errors:unit-destructure-assign, r=nikomatsakis
[rust.git] / src / test / ui / issues / issue-5067.stderr
1 error: repetition matches empty token tree
2   --> $DIR/issue-5067.rs:9:8
3    |
4 LL |     ( $()* ) => {};
5    |        ^^
6
7 error: repetition matches empty token tree
8   --> $DIR/issue-5067.rs:11:8
9    |
10 LL |     ( $()+ ) => {};
11    |        ^^
12
13 error: repetition matches empty token tree
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
21    |
22 LL |     ( [$()*] ) => {};
23    |         ^^
24
25 error: repetition matches empty token tree
26   --> $DIR/issue-5067.rs:20:9
27    |
28 LL |     ( [$()+] ) => {};
29    |         ^^
30
31 error: repetition matches empty token tree
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
39    |
40 LL |     ( $($()* $(),* $(a)* $(a),* )* ) => {};
41    |        ^^^^^^^^^^^^^^^^^^^^^^^^^^
42
43 error: repetition matches empty token tree
44   --> $DIR/issue-5067.rs:29:8
45    |
46 LL |     ( $($()* $(),* $(a)* $(a),* )+ ) => {};
47    |        ^^^^^^^^^^^^^^^^^^^^^^^^^^
48
49 error: repetition matches empty token tree
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
75    |
76 LL |     ( $(a $()+)* ) => {};
77    |            ^^
78
79 error: repetition matches empty token tree
80   --> $DIR/issue-5067.rs:49:12
81    |
82 LL |     ( $(a $()*)+ ) => {};
83    |            ^^
84
85 error: repetition matches empty token tree
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
99    |
100 LL |     (a $e1:expr $($(, a $e2:expr)*)*) => ([$e1 $($(, $e2)*)*]);
101    |                  ^^^^^^^^^^^^^^^^^^
102
103 error: repetition matches empty token tree
104   --> $DIR/issue-5067.rs:71:8
105    |
106 LL |     ( $()* ) => {};
107    |        ^^
108
109 error: aborting due to 18 previous errors
110