1 2 3 4 5 6 7 8 9
macro_rules! check { (a, b, c ; x, y, z; e, r; a) => {} } macro_rules! foo { ($($($i:ident),*);*) => {check!($($($i),*);*);} } foo!(a, b, c ; x, y, z; e, r; a);