]> git.lizzy.rs Git - rust.git/blob - src/test/ui/reserved/reserved-attr-on-macro.rs
0b00d711036ff3bff7cd7c3effca456495fcb4f6
[rust.git] / src / test / ui / reserved / reserved-attr-on-macro.rs
1 #[rustc_attribute_should_be_reserved] //~ ERROR attributes with the prefix `rustc_` are reserved
2 macro_rules! foo {
3     () => (());
4 }
5
6 fn main() {
7     foo!();
8 }