summaryrefslogtreecommitdiffstats
path: root/tests/ui/macros/bang-after-name.fixed
blob: c107ddd5d03bda4d0c1a41e0f15ca53c7365da19 (plain)
1
2
3
4
5
6
7
8
// run-rustfix
#[allow(unused_macros)]

macro_rules! foo { //~ ERROR macro names aren't followed by a `!`
    () => {};
}

fn main() {}