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