Pre-RFC improved ergonomics for `!`
Rust Internals [Unofficial]
May 23, 2026
directly matching ! doesn't trigger any lints on stable: Rust Playground
pub fn f() -> ! {
panic!()
}
pub fn g() {
match f() {}
}
Discussion in the ATmosphere