mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-23 15:23:46 +00:00
19 lines
220 B
Rust
19 lines
220 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);
|
|
}
|