mirror of
https://github.com/rust-lang/rust
synced 2024-11-05 20:45:15 +00:00
18 lines
221 B
Rust
18 lines
221 B
Rust
//@ run-pass
|
|
#![allow(non_camel_case_types)]
|
|
|
|
|
|
mod m {
|
|
pub type t = isize;
|
|
}
|
|
|
|
macro_rules! foo {
|
|
($p:path) => ({
|
|
fn f() -> $p { 10 }
|
|
f()
|
|
})
|
|
}
|
|
|
|
pub fn main() {
|
|
assert_eq!(foo!(m::t), 10);
|
|
}
|