Skip to content

Commit

Permalink
update test output
Browse files Browse the repository at this point in the history
  • Loading branch information
mark-i-m committed Jan 15, 2019
1 parent dabe86d commit aa1ce32
Showing 1 changed file with 60 additions and 12 deletions.
72 changes: 60 additions & 12 deletions src/test/ui/issues/issue-5067.stderr
Original file line number Diff line number Diff line change
@@ -1,62 +1,110 @@
error: repetition matches empty token tree
--> $DIR/issue-5067.rs:4:8
--> $DIR/issue-5067.rs:9:8
|
LL | ( $()* ) => {};
| ^^

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

error: repetition matches empty token tree
--> $DIR/issue-5067.rs:12:9
--> $DIR/issue-5067.rs:13:8
|
LL | ( $()? ) => {};
| ^^

error: repetition matches empty token tree
--> $DIR/issue-5067.rs:18:9
|
LL | ( [$()*] ) => {};
| ^^

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

error: repetition matches empty token tree
--> $DIR/issue-5067.rs:20:8
--> $DIR/issue-5067.rs:22:9
|
LL | ( [$()?] ) => {};
| ^^

error: repetition matches empty token tree
--> $DIR/issue-5067.rs:27:8
|
LL | ( $($()* $(),* $(a)* $(a),* )* ) => {};
| ^^^^^^^^^^^^^^^^^^^^^^^^^^

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

error: repetition matches empty token tree
--> $DIR/issue-5067.rs:28:12
--> $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
|
LL | ( $(a $()+)* ) => {};
| ^^

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

error: repetition matches empty token tree
--> $DIR/issue-5067.rs:38:18
--> $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
|
LL | (a $e1:expr $($(, a $e2:expr)*)*) => ([$e1 $($(, $e2)*)*]);
| ^^^^^^^^^^^^^^^^^^

error: repetition matches empty token tree
--> $DIR/issue-5067.rs:50:8
--> $DIR/issue-5067.rs:71:8
|
LL | ( $()* ) => {}
LL | ( $()* ) => {};
| ^^

error: aborting due to 10 previous errors
error: aborting due to 18 previous errors

0 comments on commit aa1ce32

Please sign in to comment.