mirror of
https://github.com/rust-lang/rust.git
synced 2025-05-01 12:37:37 +00:00
11 lines
232 B
Rust
11 lines
232 B
Rust
![]() |
//@ edition:2024
|
||
|
//@ compile-flags:-Z unstable-options
|
||
|
#![crate_name="extern_macros"]
|
||
|
#[macro_export]
|
||
|
macro_rules! attrs_on_struct {
|
||
|
( $( #[$attr:meta] )* ) => {
|
||
|
$( #[$attr] )*
|
||
|
pub struct ExpandedStruct;
|
||
|
}
|
||
|
}
|