rust/tests/ui/parser/pub-method-macro.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

24 lines
480 B
Rust
Raw Normal View History

// Issue #18317
mod bleh {
macro_rules! defn {
($n:ident) => (
fn $n (&self) -> i32 {
println!("{}", stringify!($n));
1
}
)
}
2015-03-30 13:38:27 +00:00
#[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
}
}
2016-03-03 02:32:55 +00:00
fn main() {}