rust/tests/ui/conditional-compilation/cfg-attr-unknown-attribute-macro-expansion.rs
2023-01-11 09:32:08 +00:00

12 lines
183 B
Rust

macro_rules! foo {
() => {
#[cfg_attr(all(), unknown)]
//~^ ERROR cannot find attribute `unknown` in this scope
fn foo() {}
}
}
foo!();
fn main() {}