mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-15 11:39:59 +00:00
9 lines
154 B
Rust
9 lines
154 B
Rust
fn main() {
|
|
let x = Some(0);
|
|
|
|
match x {
|
|
Some(y) | None => {} //~ ERROR variable `y` is not bound in all patterns
|
|
_ => ()
|
|
}
|
|
}
|