mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-11 17:50:59 +00:00
8 lines
146 B
Rust
8 lines
146 B
Rust
#[macro_export]
|
|
macro_rules! attrs_on_struct {
|
|
( $( #[$attr:meta] )* ) => {
|
|
$( #[$attr] )*
|
|
pub struct ExpandedStruct;
|
|
}
|
|
}
|