summary refs log tree commit diff
path: root/src/test/ui/parser/macro/macro-repeat.rs
blob: 580a1daacbf3104000800539066215a3f1999e24 (plain)
1
2
3
4
5
6
7
8
9
macro_rules! mac {
    ( $($v:tt)* ) => (
        $v  //~ ERROR still repeating at this depth
    )
}

fn main() {
    mac!(0);
}