summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/tests/ui/unneeded_field_pattern.stderr
blob: 6f7c315456969b91c54bcf3033a11c599a08fe54 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
error: you matched a field with a wildcard pattern, consider using `..` instead
  --> $DIR/unneeded_field_pattern.rs:14:15
   |
LL |         Foo { a: _, b: 0, .. } => {},
   |               ^^^^
   |
   = help: try with `Foo { b: 0, .. }`
   = note: `-D clippy::unneeded-field-pattern` implied by `-D warnings`

error: all the struct fields are matched to a wildcard pattern, consider using `..`
  --> $DIR/unneeded_field_pattern.rs:16:9
   |
LL |         Foo { a: _, b: _, c: _ } => {},
   |         ^^^^^^^^^^^^^^^^^^^^^^^^
   |
   = help: try with `Foo { .. }` instead

error: aborting due to 2 previous errors