blob: fddb991da822cfa297c9db0a5ca67a365024e45c [file] [log] [blame]
#[rustc_attribute_should_be_reserved]
//~^ ERROR cannot find attribute macro `rustc_attribute_should_be_reserved` in this scope
//~| ERROR attributes starting with `rustc` are reserved for use by the `rustc` compiler
macro_rules! foo {
() => (());
}
fn main() {
foo!(); //~ ERROR cannot determine resolution for the macro `foo`
}