blob: f8c45439d11e5865291be0c65c0a99d94b3473bc [file] [log] [blame] [edit]
//@ 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);
}