rust/tests/ui/conditional-compilation/cfg-attr-unknown-attribute-...

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() {}