blob: ee1fec4c5c2191e7fdcefe9290176fb03454e737 [file] [log] [blame]
#[macro_export]
macro_rules! attrs_on_struct {
( $( #[$attr:meta] )* ) => {
$( #[$attr] )*
pub struct ExpandedStruct;
}
}