(root)/
gcc-13.2.0/
gcc/
testsuite/
rust/
compile/
macro41.rs
macro_rules! empty {
    ($($t:tt)*) => {};
}

empty! {nothing}
empty! {struct OuterItem;}
empty! {}

fn main() {
    empty! {as statement};
    empty! {any child item};
    empty! {};
}