mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
19 lines
204 B
Rust
19 lines
204 B
Rust
// run-pass
|
|
// Issue #14660
|
|
|
|
// pretty-expanded FIXME #23616
|
|
|
|
mod bleh {
|
|
macro_rules! foo {
|
|
() => {
|
|
pub fn bar() { }
|
|
}
|
|
}
|
|
|
|
foo!();
|
|
}
|
|
|
|
fn main() {
|
|
bleh::bar();
|
|
}
|