rust/src/test/ui/parser/macro/macro-repeat.rs

10 lines
130 B
Rust
Raw Normal View History

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