1// run-rustfix
2#[allow(unused_macros)]
3
4macro_rules! foo { //~ ERROR macro names aren't followed by a `!`
5    () => {};
6}
7
8fn main() {}
9