mirror of
https://git.proxmox.com/git/rustc
synced 2025-05-02 15:13:48 +00:00
12 lines
183 B
Rust
12 lines
183 B
Rust
enum Foo {
|
|
Bar { bar: bool },
|
|
Other,
|
|
}
|
|
|
|
fn main() {
|
|
let foo = Some(Foo::Other);
|
|
|
|
if let Some(Foo::Bar {_}) = foo {}
|
|
//~^ ERROR expected field pattern, found `_`
|
|
}
|