blob: 60afc3b445061008ed7cc212bd3b62a3f436966c [file] [log] [blame] [edit]
//@ run-pass
macro_rules! foo {
($t:ty; $p:path;) => {}
}
fn main() {
foo!(i32; i32;);
}