mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +00:00
12 lines
183 B
Rust
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() {}
|