mirror of
https://github.com/rust-lang/rust.git
synced 2025-06-04 19:29:07 +00:00
9 lines
116 B
Rust
9 lines
116 B
Rust
![]() |
//@ edition:2021
|
||
|
|
||
|
#[macro_export]
|
||
|
macro_rules! edition_2021_block {
|
||
|
($($c:tt)*) => {
|
||
|
{ $($c)* }
|
||
|
}
|
||
|
}
|