about summary refs log tree commit diff
path: root/src/tools/clippy/tests/ui/unneeded_field_pattern.stderr
blob: 4ea33a5db9e2f58d3ad6389be913a6570dd3ab3d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
error: you matched a field with a wildcard pattern, consider using `..` instead
  --> tests/ui/unneeded_field_pattern.rs:18:15
   |
LL |         Foo { a: _, b: 0, .. } => {},
   |               ^^^^
   |
   = help: try with `Foo { b: 0, .. }`
   = note: `-D clippy::unneeded-field-pattern` implied by `-D warnings`
   = help: to override `-D warnings` add `#[allow(clippy::unneeded_field_pattern)]`

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

error: aborting due to 2 previous errors