rust/tests/rustdoc-ui/auxiliary/extern_macros.rs
2023-01-11 09:32:08 +00:00

8 lines
146 B
Rust

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