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

#[macro_export]
macro_rules! m {
    ($expr:expr) => {
        compile_error!("did not expect an expression to be parsed");
    };
    (const { }) => {};
}