DEBSOURCES
Skip Quicknav
sources / rustc-web / 1.78.0%2Bdfsg1-2~deb11u3 / 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 _ => () } }