rust-clippy/tests/ui/unneeded_field_pattern.stderr

20 lines
615 B
Text
Raw Normal View History

error: you matched a field with a wildcard pattern, consider using `..` instead
--> $DIR/unneeded_field_pattern.rs:14:15
|
2018-12-27 15:57:55 +00:00
LL | Foo { a: _, b: 0, .. } => {},
| ^^^^
|
= note: `-D clippy::unneeded-field-pattern` implied by `-D warnings`
= help: try with `Foo { b: 0, .. }`
error: all the struct fields are matched to a wildcard pattern, consider using `..`
--> $DIR/unneeded_field_pattern.rs:16:9
|
2018-12-27 15:57:55 +00:00
LL | Foo { a: _, b: _, c: _ } => {},
| ^^^^^^^^^^^^^^^^^^^^^^^^
|
= help: try with `Foo { .. }` instead
2018-01-16 16:06:27 +00:00
error: aborting due to 2 previous errors