rust/src/test/ui/parser/macro/macro-repeat.rs
2018-12-25 21:08:33 -07:00

9 lines
130 B
Rust

macro_rules! mac {
( $($v:tt)* ) => (
$v //~ ERROR still repeating at this depth
)
}
fn main() {
mac!(0);
}