rust/tests/ui/methods/auxiliary/macro-in-other-crate.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

10 lines
134 B
Rust
Raw Normal View History

#[macro_export]
macro_rules! mac {
($ident:ident) => { let $ident = 42; }
}
#[macro_export]
macro_rules! inline {
() => ()
}