blob: 27676a5cb8112e2a3a077d4f6279fd020ad38bbe [file] [log] [blame] [edit]
pub struct FirstStruct;
#[macro_export]
macro_rules! outer_macro {
($name:ident, $attr_struct_name:ident) => {
#[macro_export]
macro_rules! inner_macro {
($bang_macro:ident, $attr_macro:ident) => {
$bang_macro!($name);
#[$attr_macro] struct $attr_struct_name {}
}
}
}
}
outer_macro!(FirstStruct, FirstAttrStruct);