blob: ff026c53b1d7000645a679a4fb220876efec1d9c [file]
//@ check-pass
macro_rules! foo {
($t:ty; $p:path;) => {}
}
fn main() {
foo!(i32; i32;);
}