mirror of
https://git.proxmox.com/git/rustc
synced 2025-05-29 18:14:56 +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);
|
|
}
|