2017-02-07 20:05:30 +00:00
|
|
|
error: You matched a field with a wildcard pattern. Consider using `..` instead
|
2019-01-07 21:33:18 +00:00
|
|
|
--> $DIR/unneeded_field_pattern.rs:14:15
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | Foo { a: _, b: 0, .. } => {},
|
2017-02-07 20:05:30 +00:00
|
|
|
| ^^^^
|
|
|
|
|
|
2018-08-01 14:30:44 +00:00
|
|
|
= note: `-D clippy::unneeded-field-pattern` implied by `-D warnings`
|
2017-02-07 20:05:30 +00:00
|
|
|
= help: Try with `Foo { b: 0, .. }`
|
|
|
|
|
|
|
|
error: All the struct fields are matched to a wildcard pattern, consider using `..`.
|
2019-01-07 21:33:18 +00:00
|
|
|
--> $DIR/unneeded_field_pattern.rs:16:9
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | Foo { a: _, b: _, c: _ } => {},
|
2017-02-07 20:05:30 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
|
= help: Try with `Foo { .. }` instead
|
|
|
|
|
2018-01-16 16:06:27 +00:00
|
|
|
error: aborting due to 2 previous errors
|
|
|
|
|