Thanks to Vadim Petrochenkov who [told me what the fix was][z]! [z]: https://rust-lang.zulipchat.com/#narrow/stream/182449-t-compiler.2Fhelp/topic/finding.20which.20macro.20rule.20to.20use/near/220240422
20 lines
235 B
Rust
20 lines
235 B
Rust
// check-pass
|
|
|
|
macro_rules! exp {
|
|
(const $n:expr) => {
|
|
$n
|
|
};
|
|
}
|
|
|
|
macro_rules! stmt {
|
|
(exp $e:expr) => {
|
|
$e
|
|
};
|
|
(exp $($t:tt)+) => {
|
|
exp!($($t)+)
|
|
};
|
|
}
|
|
|
|
fn main() {
|
|
stmt!(exp const 1);
|
|
}
|