rust/tests/ui/issues/issue-5067.stderr

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

111 lines
2.5 KiB
Plaintext
Raw Normal View History

2018-07-15 21:11:54 +00:00
error: repetition matches empty token tree
2019-01-15 22:40:10 +00:00
--> $DIR/issue-5067.rs:9:8
2018-07-15 21:11:54 +00:00
|
LL | ( $()* ) => {};
| ^^
error: repetition matches empty token tree
2019-01-15 22:40:10 +00:00
--> $DIR/issue-5067.rs:11:8
2018-07-15 21:11:54 +00:00
|
LL | ( $()+ ) => {};
| ^^
error: repetition matches empty token tree
2019-01-15 22:40:10 +00:00
--> $DIR/issue-5067.rs:13:8
|
LL | ( $()? ) => {};
| ^^
error: repetition matches empty token tree
--> $DIR/issue-5067.rs:18:9
2018-07-15 21:11:54 +00:00
|
LL | ( [$()*] ) => {};
| ^^
error: repetition matches empty token tree
2019-01-15 22:40:10 +00:00
--> $DIR/issue-5067.rs:20:9
2018-07-15 21:11:54 +00:00
|
LL | ( [$()+] ) => {};
| ^^
error: repetition matches empty token tree
2019-01-15 22:40:10 +00:00
--> $DIR/issue-5067.rs:22:9
|
LL | ( [$()?] ) => {};
| ^^
error: repetition matches empty token tree
--> $DIR/issue-5067.rs:27:8
2018-07-15 21:11:54 +00:00
|
LL | ( $($()* $(),* $(a)* $(a),* )* ) => {};
| ^^^^^^^^^^^^^^^^^^^^^^^^^^
error: repetition matches empty token tree
2019-01-15 22:40:10 +00:00
--> $DIR/issue-5067.rs:29:8
2018-07-15 21:11:54 +00:00
|
LL | ( $($()* $(),* $(a)* $(a),* )+ ) => {};
| ^^^^^^^^^^^^^^^^^^^^^^^^^^
error: repetition matches empty token tree
2019-01-15 22:40:10 +00:00
--> $DIR/issue-5067.rs:31:8
|
LL | ( $($()* $(),* $(a)* $(a),* )? ) => {};
| ^^^^^^^^^^^^^^^^^^^^^^^^^^
error: repetition matches empty token tree
--> $DIR/issue-5067.rs:33:8
|
LL | ( $($()? $(),* $(a)? $(a),* )* ) => {};
| ^^^^^^^^^^^^^^^^^^^^^^^^^^
error: repetition matches empty token tree
--> $DIR/issue-5067.rs:35:8
|
LL | ( $($()? $(),* $(a)? $(a),* )+ ) => {};
| ^^^^^^^^^^^^^^^^^^^^^^^^^^
error: repetition matches empty token tree
--> $DIR/issue-5067.rs:37:8
|
LL | ( $($()? $(),* $(a)? $(a),* )? ) => {};
| ^^^^^^^^^^^^^^^^^^^^^^^^^^
error: repetition matches empty token tree
--> $DIR/issue-5067.rs:47:12
2018-07-15 21:11:54 +00:00
|
LL | ( $(a $()+)* ) => {};
| ^^
error: repetition matches empty token tree
2019-01-15 22:40:10 +00:00
--> $DIR/issue-5067.rs:49:12
2018-07-15 21:11:54 +00:00
|
LL | ( $(a $()*)+ ) => {};
| ^^
error: repetition matches empty token tree
2019-01-15 22:40:10 +00:00
--> $DIR/issue-5067.rs:51:12
|
LL | ( $(a $()+)? ) => {};
| ^^
error: repetition matches empty token tree
--> $DIR/issue-5067.rs:53:12
|
LL | ( $(a $()?)+ ) => {};
| ^^
error: repetition matches empty token tree
--> $DIR/issue-5067.rs:60:18
2018-07-15 21:11:54 +00:00
|
LL | (a $e1:expr $($(, a $e2:expr)*)*) => ([$e1 $($(, $e2)*)*]);
| ^^^^^^^^^^^^^^^^^^
error: repetition matches empty token tree
2019-01-15 22:40:10 +00:00
--> $DIR/issue-5067.rs:71:8
2018-07-15 21:11:54 +00:00
|
2019-01-15 22:40:10 +00:00
LL | ( $()* ) => {};
2018-07-15 21:11:54 +00:00
| ^^
2019-01-15 22:40:10 +00:00
error: aborting due to 18 previous errors
2018-07-15 21:11:54 +00:00