rust/src/test/ui/macros/issue-61033-1.rs

10 lines
174 B
Rust
Raw Normal View History

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