about summary refs log tree commit diff
path: root/src/test/ui/parser/pub-method-macro.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/parser/pub-method-macro.rs')
-rw-r--r--src/test/ui/parser/pub-method-macro.rs23
1 files changed, 0 insertions, 23 deletions
diff --git a/src/test/ui/parser/pub-method-macro.rs b/src/test/ui/parser/pub-method-macro.rs
deleted file mode 100644
index 0183bdcf622..00000000000
--- a/src/test/ui/parser/pub-method-macro.rs
+++ /dev/null
@@ -1,23 +0,0 @@
-// Issue #18317
-
-mod bleh {
-    macro_rules! defn {
-        ($n:ident) => (
-            fn $n (&self) -> i32 {
-                println!("{}", stringify!($n));
-                1
-            }
-        )
-    }
-
-    #[derive(Copy, Clone)]
-    pub struct S;
-
-    impl S {
-        pub defn!(f); //~ ERROR can't qualify macro invocation with `pub`
-        //~^ HELP remove the visibility
-        //~| HELP try adjusting the macro to put `pub` inside the invocation
-    }
-}
-
-fn main() {}