mirror of
https://github.com/rust-lang/rust.git
synced 2025-05-02 04:57:35 +00:00
10 lines
194 B
Rust
10 lines
194 B
Rust
//@ edition:2024
|
|
#![crate_name="extern_macros"]
|
|
#[macro_export]
|
|
macro_rules! attrs_on_struct {
|
|
( $( #[$attr:meta] )* ) => {
|
|
$( #[$attr] )*
|
|
pub struct ExpandedStruct;
|
|
}
|
|
}
|