aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/rust/compile/macro-issue2268.rs
blob: 4bd9c101c73fb5b738605d0d8cccaef2e32f310d (plain)
1
2
3
4
5
macro_rules! foo {
    ($(+ $($a:ident)*)*) => {$($($a)*)*}
}

foo!();