diff options
Diffstat (limited to '')
-rw-r--r-- | src/test/ui/parser/pub-method-macro.rs | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/src/test/ui/parser/pub-method-macro.rs b/src/test/ui/parser/pub-method-macro.rs new file mode 100644 index 000000000..0183bdcf6 --- /dev/null +++ b/src/test/ui/parser/pub-method-macro.rs @@ -0,0 +1,23 @@ +// 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() {} |