about summary refs log tree commit diff
path: root/src/test/ui/macros/macro-multiple-matcher-bindings.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/macros/macro-multiple-matcher-bindings.rs')
-rw-r--r--src/test/ui/macros/macro-multiple-matcher-bindings.rs21
1 files changed, 0 insertions, 21 deletions
diff --git a/src/test/ui/macros/macro-multiple-matcher-bindings.rs b/src/test/ui/macros/macro-multiple-matcher-bindings.rs
deleted file mode 100644
index 7d39dc0a52f..00000000000
--- a/src/test/ui/macros/macro-multiple-matcher-bindings.rs
+++ /dev/null
@@ -1,21 +0,0 @@
-// Test that duplicate matcher binding names are caught at declaration time, rather than at macro
-// invocation time.
-
-#![allow(unused_macros)]
-
-macro_rules! foo1 {
-    ($a:ident, $a:ident) => {}; //~ERROR duplicate matcher binding
-    ($a:ident, $a:path) => {};  //~ERROR duplicate matcher binding
-}
-
-macro_rules! foo2 {
-    ($a:ident) => {}; // OK
-    ($a:path) => {};  // OK
-}
-
-macro_rules! foo3 {
-    ($a:ident, $($a:ident),*) => {}; //~ERROR duplicate matcher binding
-    ($($a:ident)+ # $($($a:path),+);*) => {}; //~ERROR duplicate matcher binding
-}
-
-fn main() {}