aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/rust/compile/macro-issue2264.rs
blob: 497dd3c552339656b0d19fb7fe2b2274bef63b4c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
macro_rules! a {
    (1) => {x};
    (2) => {};
}

macro_rules! b {
    (a) => {x};
    (b) => {};
}

a!(2);
b!(b);