mirror of
https://github.com/rust-lang/rust.git
synced 2025-11-25 05:06:56 +00:00
14 lines
464 B
Plaintext
14 lines
464 B
Plaintext
error: expected a literal (`1u8`, `1.0f32`, `"string"`, etc.) here, found `expr` metavariable
|
|
--> $DIR/nonterminal-expansion.rs:7:22
|
|
|
|
|
LL | #[repr(align($n))]
|
|
| ^^
|
|
...
|
|
LL | pass_nonterminal!(n!());
|
|
| ----------------------- in this macro invocation
|
|
|
|
|
= note: this error originates in the macro `pass_nonterminal` (in Nightly builds, run with -Z macro-backtrace for more info)
|
|
|
|
error: aborting due to 1 previous error
|
|
|