rustc/tests/ui/macros/bang-after-name.fixed
2023-08-02 10:33:26 +02:00

9 lines
136 B
Plaintext

// run-rustfix
#[allow(unused_macros)]
macro_rules! foo { //~ ERROR macro names aren't followed by a `!`
() => {};
}
fn main() {}