1 2 3 4 5 6 7 8 9
//@ edition:2024 #![crate_name="extern_macros"] #[macro_export] macro_rules! attrs_on_struct { ( $( #[$attr:meta] )* ) => { $( #[$attr] )* pub struct ExpandedStruct; } }