]> git.lizzy.rs Git - rust.git/blob - src/test/ui/auxiliary/define_macro.rs
Rollup merge of #57132 - daxpedda:master, r=steveklabnik
[rust.git] / src / test / ui / auxiliary / define_macro.rs
1 #[macro_export]
2 macro_rules! define_macro {
3     ($i:ident) => {
4         macro_rules! $i { () => {} }
5     }
6 }