DEBSOURCES
Skip Quicknav
sources / rustc / 1.70.0%2Bdfsg1-9 / 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 _ => () } }