2017-02-07 20:05:30 +00:00
|
|
|
error: You matched a field with a wildcard pattern. Consider using `..` instead
|
2018-10-06 16:18:06 +00:00
|
|
|
--> $DIR/unneeded_field_pattern.rs:27:15
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
2018-10-06 16:18:06 +00:00
|
|
|
27 | 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 `..`.
|
2018-10-06 16:18:06 +00:00
|
|
|
--> $DIR/unneeded_field_pattern.rs:29:9
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
2018-10-06 16:18:06 +00:00
|
|
|
29 | 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
|
|
|
|
|