]> git.lizzy.rs Git - rust.git/blob - tests/ui/macros/recovery-allowed.rs
Auto merge of #106976 - tmiasko:borrowck-lazy-dominators, r=cjgillot
[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() {}