mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +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 `_`
|
|
}
|