mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-16 08:15:58 +00:00
18 lines
173 B
Rust
18 lines
173 B
Rust
//@ run-pass
|
|
// Issue #14660
|
|
|
|
|
|
mod bleh {
|
|
macro_rules! foo {
|
|
() => {
|
|
pub fn bar() { }
|
|
}
|
|
}
|
|
|
|
foo!();
|
|
}
|
|
|
|
fn main() {
|
|
bleh::bar();
|
|
}
|