]> git.lizzy.rs Git - rust.git/blob - tests/ui/macros/bang-after-name.fixed
Rollup merge of #106889 - scottmcm:windows-mut, r=cuviper
[rust.git] / tests / 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() {}