Sign in
rust
/
rust-lang
/
rust
/
1b01decc1ca851e014b6951bdd7f2ac2f897adc9
/
.
/
tests
/
rustdoc-ui
/
doctest
/
auxiliary
/
extern_macros.rs
blob: ee1fec4c5c2191e7fdcefe9290176fb03454e737 [
file
] [
log
] [
blame
]
#[
macro_export
]
macro_rules
!
attrs_on_struct
{
(
$
(
#[
$attr
:
meta
]
)*
)
=>
{
$
(
#[
$attr
]
)*
pub
struct
ExpandedStruct
;
}
}