summaryrefslogtreecommitdiffstats
path: root/src/test/ui/macros/bang-after-name.fixed
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/macros/bang-after-name.fixed')
-rw-r--r--src/test/ui/macros/bang-after-name.fixed8
1 files changed, 0 insertions, 8 deletions
diff --git a/src/test/ui/macros/bang-after-name.fixed b/src/test/ui/macros/bang-after-name.fixed
deleted file mode 100644
index c107ddd5d..000000000
--- a/src/test/ui/macros/bang-after-name.fixed
+++ /dev/null
@@ -1,8 +0,0 @@
-// run-rustfix
-#[allow(unused_macros)]
-
-macro_rules! foo { //~ ERROR macro names aren't followed by a `!`
- () => {};
-}
-
-fn main() {}