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