2020-09-27 08:52:51 -05:00
|
|
|
error: expected unsuffixed literal or identifier, found `n!()`
|
|
|
|
--> $DIR/nonterminal-expansion.rs:5:22
|
|
|
|
|
|
|
|
|
LL | #[repr(align($n))]
|
|
|
|
| ^^
|
|
|
|
...
|
|
|
|
LL | pass_nonterminal!(n!());
|
2021-10-14 13:28:28 -05:00
|
|
|
| ----------------------- in this macro invocation
|
2020-09-27 08:52:51 -05:00
|
|
|
|
|
2021-02-13 13:52:25 -06:00
|
|
|
= note: this error originates in the macro `pass_nonterminal` (in Nightly builds, run with -Z macro-backtrace for more info)
|
2020-09-27 08:52:51 -05:00
|
|
|
|
2021-07-09 15:03:48 -05:00
|
|
|
error[E0693]: incorrect `repr(align)` attribute format: `align` takes exactly one argument in parentheses
|
|
|
|
--> $DIR/nonterminal-expansion.rs:5:16
|
|
|
|
|
|
|
|
|
LL | #[repr(align($n))]
|
|
|
|
| ^^^^^^^^^
|
|
|
|
...
|
|
|
|
LL | pass_nonterminal!(n!());
|
2021-10-14 13:28:28 -05:00
|
|
|
| ----------------------- in this macro invocation
|
2021-07-09 15:03:48 -05:00
|
|
|
|
|
|
|
|
= note: this error originates in the macro `pass_nonterminal` (in Nightly builds, run with -Z macro-backtrace for more info)
|
|
|
|
|
|
|
|
error: aborting due to 2 previous errors
|
2020-09-27 08:52:51 -05:00
|
|
|
|
2021-07-09 15:03:48 -05:00
|
|
|
For more information about this error, try `rustc --explain E0693`.
|