2015-03-04 18:05:38 +11:00
|
|
|
macro_rules! foo {
|
|
|
|
|
() => {
|
2019-07-12 01:00:20 +03:00
|
|
|
#[cfg_attr(all(), unknown)]
|
2019-09-15 12:55:18 +03:00
|
|
|
//~^ ERROR cannot find attribute `unknown` in this scope
|
2015-03-04 18:05:38 +11:00
|
|
|
fn foo() {}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
foo!();
|
|
|
|
|
|
|
|
|
|
fn main() {}
|