rust/src/test/ui/macros/issue-61033-1.rs
2019-05-22 12:20:43 -05:00

10 lines
174 B
Rust

// Regression test for issue #61033.
macro_rules! test1 {
($x:ident, $($tt:tt)*) => { $($tt)+ } //~ERROR this must repeat at least once
}
fn main() {
test1!(x,);
}