Sign in
rust
/
rust-lang
/
rust
/
refs/heads/try
/
.
/
tests
/
ui
/
macros
/
auxiliary
/
expr_2021_implicit.rs
blob: 61762e41dee0cb4f77cb945b7bef6cbbb4c5595f [
file
] [
log
] [
blame
]
//@ edition:2021
#[
macro_export
]
macro_rules
!
m
{
(
$expr
:
expr
)
=>
{
compile_error
!(
"did not expect an expression to be parsed"
);
};
(
const
{
})
=>
{};
}