mirror of
https://github.com/rust-lang/rust.git
synced 2025-06-06 12:18:33 +00:00
10 lines
154 B
Rust
10 lines
154 B
Rust
![]() |
//@ edition:2024
|
||
|
//@ compile-flags: -Zunstable-options
|
||
|
|
||
|
#[macro_export]
|
||
|
macro_rules! edition_2024_block {
|
||
|
($($c:tt)*) => {
|
||
|
{ $($c)* }
|
||
|
}
|
||
|
}
|