2017-02-07 20:05:30 +00:00
|
|
|
error: You matched a field with a wildcard pattern. Consider using `..` instead
|
2017-08-01 15:54:21 +00:00
|
|
|
--> $DIR/unneeded_field_pattern.rs:17:15
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
2017-02-08 13:58:07 +00:00
|
|
|
17 | Foo { a: _, b: 0, .. } => {}
|
2017-02-07 20:05:30 +00:00
|
|
|
| ^^^^
|
|
|
|
|
|
2017-05-17 12:19:44 +00:00
|
|
|
= note: `-D 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 `..`.
|
2017-08-01 15:54:21 +00:00
|
|
|
--> $DIR/unneeded_field_pattern.rs:19:9
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
2017-02-08 13:58:07 +00:00
|
|
|
19 | Foo { a: _, b: _, c: _ } => {}
|
2017-02-07 20:05:30 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
|
= help: Try with `Foo { .. }` instead
|
|
|
|
|