]> git.lizzy.rs Git - rust.git/blob - tests/ui/macros/recovery-allowed.rs
Rollup merge of #106717 - klensy:typo, r=lcnr
[rust.git] / tests / ui / macros / recovery-allowed.rs
1 macro_rules! please_recover {
2     ($a:expr) => {};
3 }
4
5 please_recover! { not 1 }
6 //~^ ERROR unexpected `1` after identifier
7
8 fn main() {}