rustc/tests/ui/macros/pub-item-inside-macro.rs
2025-02-17 11:14:05 +01:00

18 lines
173 B
Rust

//@ run-pass
// Issue #14660
mod bleh {
macro_rules! foo {
() => {
pub fn bar() { }
}
}
foo!();
}
fn main() {
bleh::bar();
}