summaryrefslogtreecommitdiffstats
path: root/src/test/ui/macros/auxiliary/define-macro.rs
blob: 4956907c55ea906fa5343305f5e7d3a253f17953 (plain)
1
2
3
4
5
6
#[macro_export]
macro_rules! define_macro {
    ($i:ident) => {
        macro_rules! $i { () => {} }
    }
}