External Publication
Visit Post

Pre-RFC improved ergonomics for `!`

Rust Internals [Unofficial] May 23, 2026
Source

directly matching ! doesn't trigger any lints on stable: Rust Playground

pub fn f() -> ! {
    panic!()
}

pub fn g() {
    match f() {}
}

Discussion in the ATmosphere

Loading comments...