]> git.proxmox.com Git - rustc.git/blob - tests/ui/macros/auxiliary/macro-in-other-crate.rs
New upstream version 1.68.2+dfsg1
[rustc.git] / tests / ui / macros / auxiliary / macro-in-other-crate.rs
1 #[macro_export]
2 macro_rules! mac {
3 ($ident:ident) => { let $ident = 42; }
4 }
5
6 #[macro_export]
7 macro_rules! inline {
8 () => ()
9 }
10
11 #[macro_export]
12 macro_rules! from_prelude {
13 () => ()
14 }