rust/tests/ui/macros/recovery-forbidden.rs
2023-01-11 09:32:08 +00:00

14 lines
211 B
Rust

// check-pass
macro_rules! dont_recover_here {
($e:expr) => {
compile_error!("Must not recover to single !1 expr");
};
(not $a:literal) => {};
}
dont_recover_here! { not 1 }
fn main() {}