Files
rust/tests/ui/inline-const/in-pat-recovery.rs
2025-03-21 09:35:31 +01:00

12 lines
298 B
Rust

// While `feature(inline_const_pat)` has been removed from the
// compiler, we should still make sure that the resulting error
// message is acceptable.
fn main() {
match 1 {
const { 1 + 7 } => {}
//~^ `inline_const_pat` has been removed
2 => {}
_ => {}
}
}