summaryrefslogtreecommitdiffstats
path: root/src/test/ui/macros/auxiliary/macro_export_inner_module.rs
blob: d71af9ee6f2784170f014f1450126df7419df9c0 (plain)
1
2
3
4
5
6
pub mod inner {
    #[macro_export]
    macro_rules! foo {
        () => (1)
    }
}