]> git.lizzy.rs Git - rust.git/blob - src/test/ui/macros/bang-after-name.fixed
Merge commit 'e329249b6a3a98830d860c74c8234a8dd9407436' into clippyup
[rust.git] / src / test / ui / macros / bang-after-name.fixed
1 // run-rustfix
2 #[allow(unused_macros)]
3
4 macro_rules! foo { //~ ERROR macro names aren't followed by a `!`
5     () => {};
6 }
7
8 fn main() {}