aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/rust/compile/macros/mbe/macro-expand-module.rs
blob: e3e702eac84e26a6cdc1573c59261312c76c6ce1 (plain)
1
2
3
4
5
6
7
8
9
10
11
mod foo {
    macro_rules! bar {
        () => ()
    }

    bar! ();

    pub struct S;
}

pub fn buzz(_: foo::S) {}