about summary refs log tree commit diff
path: root/tests/ui/drop/auxiliary/edition-2021-macros.rs
blob: 8a6444f8614d4c8b3c0b84783a706aa88d1809fa (plain)
1
2
3
4
5
6
7
8
//@ edition:2021

#[macro_export]
macro_rules! edition_2021_block {
    ($($c:tt)*) => {
        { $($c)* }
    }
}