about summary refs log tree commit diff
path: root/tests/ui/macros/issue-37175.rs
blob: e25ddfce6f2dd9e27d65cbd49efcd8f0738eb9a6 (plain)
1
2
3
4
5
//@ run-pass
macro_rules! m { (<$t:ty>) => { stringify!($t) } }
fn main() {
    println!("{}", m!(<Vec<i32>>));
}