about summary refs log tree commit diff
path: root/tests/ui/macros/semi-after-macro-ty.rs
blob: 60afc3b445061008ed7cc212bd3b62a3f436966c (plain)
1
2
3
4
5
6
7
8
//@ run-pass
macro_rules! foo {
    ($t:ty; $p:path;) => {}
}

fn main() {
    foo!(i32; i32;);
}