aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/rust/compile/macro-delim.rs
blob: de4cd5607d94824ede5751ed0d4d7b15ce44b1af (plain)
1
2
3
4
5
6
7
8
macro_rules! foo {
    ([]) => {struct Foo;};
    (()) => {struct _A;};
    (bool) => {struct _B;};
}

foo! (());
foo! (bool);