mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-23 07:14:28 +00:00
41e8d152dc
Co-authored-by: Adrian <adrian.iosdev@gmail.com>
14 lines
357 B
Plaintext
14 lines
357 B
Plaintext
error: expected field pattern, found `_`
|
|
--> $DIR/struct-enum-ignoring-field-with-underscore.rs:9:27
|
|
|
|
|
LL | if let Some(Foo::Bar {_}) = foo {}
|
|
| ^
|
|
|
|
|
help: to omit remaining fields, use `..`
|
|
|
|
|
LL | if let Some(Foo::Bar {..}) = foo {}
|
|
| ~~
|
|
|
|
error: aborting due to 1 previous error
|
|
|