about summary refs log tree commit diff
path: root/src/test/ui/macros/missing-bang-in-decl.fixed
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/macros/missing-bang-in-decl.fixed')
-rw-r--r--src/test/ui/macros/missing-bang-in-decl.fixed16
1 files changed, 0 insertions, 16 deletions
diff --git a/src/test/ui/macros/missing-bang-in-decl.fixed b/src/test/ui/macros/missing-bang-in-decl.fixed
deleted file mode 100644
index b1aa3298bfa..00000000000
--- a/src/test/ui/macros/missing-bang-in-decl.fixed
+++ /dev/null
@@ -1,16 +0,0 @@
-// run-rustfix
-
-#![allow(unused_macros)]
-
-macro_rules! foo {
-    //~^ ERROR expected `!` after `macro_rules`
-    () => {};
-}
-
-macro_rules! bar {
-    //~^ ERROR expected `!` after `macro_rules`
-    //~^^ ERROR macro names aren't followed by a `!`
-    () => {};
-}
-
-fn main() {}