1error: expected `!` after `macro_rules`
2  --> $DIR/missing-bang-in-decl.rs:5:1
3   |
4LL | macro_rules foo {
5   | ^^^^^^^^^^^ help: add a `!`: `macro_rules!`
6
7error: expected `!` after `macro_rules`
8  --> $DIR/missing-bang-in-decl.rs:10:1
9   |
10LL | macro_rules bar! {
11   | ^^^^^^^^^^^ help: add a `!`: `macro_rules!`
12
13error: macro names aren't followed by a `!`
14  --> $DIR/missing-bang-in-decl.rs:10:16
15   |
16LL | macro_rules bar! {
17   |                ^ help: remove the `!`
18
19error: aborting due to 3 previous errors
20
21