rust/tests/ui/attributes/nonterminal-expansion.rs

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

21 lines
485 B
Rust
Raw Normal View History

//@ compile-flags: -Zdeduplicate-diagnostics=yes
// Macros were previously expanded in `Expr` nonterminal tokens, now they are not.
macro_rules! pass_nonterminal {
($n:expr) => {
#[repr(align($n))]
2024-05-05 23:25:49 +00:00
//~^ ERROR expected unsuffixed literal, found `n!()`
struct S;
};
}
macro_rules! n {
() => { 32 };
}
pass_nonterminal!(n!());
2024-03-02 15:18:06 +00:00
//~^ ERROR incorrect `repr(align)` attribute format: `align` expects a literal integer as argument [E0693]
fn main() {}