blob: 580a1daacbf3104000800539066215a3f1999e24 [file] [log] [blame]
macro_rules! mac {
( $($v:tt)* ) => (
$v //~ ERROR still repeating at this depth
)
}
fn main() {
mac!(0);
}