rust/tests/ui/macros/issue-78892-substitution-in-statement-attr.rs

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

15 lines
189 B
Rust
Raw Normal View History

2020-11-09 15:43:33 +00:00
//@ check-pass
// regression test for #78892
macro_rules! mac {
($lint_name:ident) => {{
#[allow($lint_name)]
let _ = ();
}};
}
fn main() {
mac!(dead_code)
}