rust/src/test/ui/error-codes/E0408.rs
2018-12-25 21:08:33 -07:00

8 lines
154 B
Rust

fn main() {
let x = Some(0);
match x {
Some(y) | None => {} //~ ERROR variable `y` is not bound in all patterns
_ => ()
}
}