blob: 157698de4b4f818b28ec44f41b3b82b414eb26b4 [file] [log] [blame]
David Tolnay6ed09a42016-10-02 23:51:44 -07001macro_rules! test {
2 ($($tt:tt)*) => {};
3}
4
5fn func() {
6 test! { ... }
7
8 test!(...);
9 test![...];
10}