mirror of
https://github.com/rust-lang/rust.git
synced 2025-05-02 04:57:35 +00:00
10 lines
174 B
Rust
10 lines
174 B
Rust
![]() |
//@ edition:2021
|
||
|
|
||
|
#[macro_export]
|
||
|
macro_rules! m {
|
||
|
($expr:expr) => {
|
||
|
compile_error!("did not expect an expression to be parsed");
|
||
|
};
|
||
|
(const { }) => {};
|
||
|
}
|