blob: f04af1a0d65ff69bc248932857a6acdf2aa6638f [file] [log] [blame]
// 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 try adjusting the macro to put `pub` inside the invocation
}
}
fn main() {}