rust/tests/ui/macros/pub-method-inside-macro.rs
2023-01-11 09:32:08 +00:00

23 lines
253 B
Rust

// run-pass
// Issue #17436
// pretty-expanded FIXME #23616
mod bleh {
macro_rules! foo {
() => {
pub fn bar(&self) { }
}
}
pub struct S;
impl S {
foo!();
}
}
fn main() {
bleh::S.bar();
}