rust/tests/ui/macros/issue-61033-2.stderr

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

25 lines
602 B
Plaintext
Raw Normal View History

2019-05-22 17:20:43 +00:00
error: meta-variable `id1` repeats 2 times, but `id2` repeats 3 times
--> $DIR/issue-61033-2.rs:8:10
|
LL | $(
| __________^
2020-03-17 11:12:57 +00:00
LL | |
LL | |
2019-05-22 17:20:43 +00:00
LL | | $id1 + $id2 // $id1 and $id2 may repeat different numbers of times
LL | | )*
| |_________^
2020-03-17 11:12:57 +00:00
error: meta-variable `id1` repeats 2 times, but `id2` repeats 4 times
--> $DIR/issue-61033-2.rs:8:10
|
LL | $(
| __________^
LL | |
LL | |
LL | | $id1 + $id2 // $id1 and $id2 may repeat different numbers of times
LL | | )*
| |_________^
error: aborting due to 2 previous errors
2019-05-22 17:20:43 +00:00