rust/tests/ui/macros/recovery-forbidden.rs
2024-02-16 20:02:50 +00:00

14 lines
212 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() {}