summaryrefslogtreecommitdiffstats
path: root/src/test/rustdoc-ui/auxiliary/extern_macros.rs
blob: ee1fec4c5c2191e7fdcefe9290176fb03454e737 (plain)
1
2
3
4
5
6
7
#[macro_export]
macro_rules! attrs_on_struct {
    ( $( #[$attr:meta] )* ) => {
        $( #[$attr] )*
        pub struct ExpandedStruct;
    }
}