mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-15 17:14:50 +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() {}
|