1 #[macro_export] 2 macro_rules! define_macro { 3 ($i:ident) => { 4 macro_rules! $i { () => {} } 5 } 6 } 7