mirror of
https://github.com/rust-lang/rust.git
synced 2025-05-14 02:49:40 +00:00
10 lines
174 B
Rust
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,);
|
||
|
}
|