mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
24 lines
314 B
Rust
24 lines
314 B
Rust
//@ check-pass
|
|
|
|
#![feature(decl_macro)]
|
|
|
|
mod bar {
|
|
mod baz {
|
|
pub fn f() {}
|
|
}
|
|
|
|
pub macro m($f:ident) {
|
|
baz::f();
|
|
let _: i32 = $f();
|
|
{
|
|
fn $f() -> u32 { 0 }
|
|
let _: u32 = $f();
|
|
}
|
|
}
|
|
}
|
|
|
|
fn main() {
|
|
fn f() -> i32 { 0 }
|
|
bar::m!(f);
|
|
}
|