]> git.proxmox.com Git - rustc.git/blob - tests/ui/macros/rfc-3086-metavar-expr/issue-111904.stderr
New upstream version 1.73.0+dfsg1
[rustc.git] / tests / ui / macros / rfc-3086-metavar-expr / issue-111904.stderr
1 error: `count` followed by a comma must have an associated index indicating its depth
2 --> $DIR/issue-111904.rs:4:37
3 |
4 LL | ( $( $($t:ident),* );* ) => { ${count(t,)} }
5 | ^^^^^
6
7 error: expected expression, found `$`
8 --> $DIR/issue-111904.rs:4:35
9 |
10 LL | ( $( $($t:ident),* );* ) => { ${count(t,)} }
11 | ^ expected expression
12 ...
13 LL | foo!(a, a; b, b);
14 | ---------------- in this macro invocation
15 |
16 = note: this error originates in the macro `foo` (in Nightly builds, run with -Z macro-backtrace for more info)
17
18 error: aborting due to 2 previous errors
19