summaryrefslogtreecommitdiffstats
path: root/src/test/ui/methods/auxiliary/macro-in-other-crate.rs
blob: feda084634abeedbe722d7a57fc4fe1e21c6ac97 (plain)
1
2
3
4
5
6
7
8
9
#[macro_export]
macro_rules! mac {
    ($ident:ident) => { let $ident = 42; }
}

#[macro_export]
macro_rules! inline {
    () => ()
}