blob: 2ea3ea5204c9c36a7ccb94c65632af4a82bb1f59 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
|
error: repetition matches empty token tree
--> $DIR/issue-5067.rs:14:8
|
LL | ( $()* ) => {};
| ^^
error: repetition matches empty token tree
--> $DIR/issue-5067.rs:16:8
|
LL | ( $()+ ) => {};
| ^^
error: repetition matches empty token tree
--> $DIR/issue-5067.rs:22:9
|
LL | ( [$()*] ) => {};
| ^^
error: repetition matches empty token tree
--> $DIR/issue-5067.rs:24:9
|
LL | ( [$()+] ) => {};
| ^^
error: repetition matches empty token tree
--> $DIR/issue-5067.rs:30:8
|
LL | ( $($()* $(),* $(a)* $(a),* )* ) => {};
| ^^^^^^^^^^^^^^^^^^^^^^^^^^
error: repetition matches empty token tree
--> $DIR/issue-5067.rs:32:8
|
LL | ( $($()* $(),* $(a)* $(a),* )+ ) => {};
| ^^^^^^^^^^^^^^^^^^^^^^^^^^
error: repetition matches empty token tree
--> $DIR/issue-5067.rs:38:12
|
LL | ( $(a $()+)* ) => {};
| ^^
error: repetition matches empty token tree
--> $DIR/issue-5067.rs:40:12
|
LL | ( $(a $()*)+ ) => {};
| ^^
error: repetition matches empty token tree
--> $DIR/issue-5067.rs:48:18
|
LL | (a $e1:expr $($(, a $e2:expr)*)*) => ([$e1 $($(, $e2)*)*]);
| ^^^^^^^^^^^^^^^^^^
error: repetition matches empty token tree
--> $DIR/issue-5067.rs:60:8
|
LL | ( $()* ) => {}
| ^^
error: aborting due to 10 previous errors
|