1 2 3 4 5 6 7 8 9 10
macro_rules! foo { () => { u32 }; } fn main() { let _a = 15i32; let _b = _a as foo!(); }