rust/tests/ui/methods/auxiliary/macro-in-other-crate.rs
2023-01-11 09:32:08 +00:00

10 lines
134 B
Rust

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