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

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

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