DEBSOURCES
Skip Quicknav
sources / rustc / 1.85.0%2Bdfsg3-1 / tests / ui / error-codes / E0408.rs
12345678
fn main() { let x = Some(0); match x { Some(y) | None => {} //~ ERROR variable `y` is not bound in all patterns _ => () } }