summaryrefslogtreecommitdiffstats
path: root/tests/ui/structs-enums/struct-enum-ignoring-field-with-underscore.stderr
blob: 2f3a150e5cba92566aadd814edcbad3e2fb000a4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
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 previous error