2017-02-07 21:05:30 +01:00
|
|
|
error: You matched a field with a wildcard pattern. Consider using `..` instead
|
|
|
|
--> $DIR/unneeded_field_pattern.rs:17:15
|
|
|
|
|
|
2017-02-08 14:58:07 +01:00
|
|
|
17 | Foo { a: _, b: 0, .. } => {}
|
2017-02-07 21:05:30 +01:00
|
|
|
| ^^^^
|
|
|
|
|
|
|
|
|
note: lint level defined here
|
|
|
|
--> $DIR/unneeded_field_pattern.rs:4:9
|
|
|
|
|
|
|
|
|
4 | #![deny(unneeded_field_pattern)]
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
= help: Try with `Foo { b: 0, .. }`
|
|
|
|
|
|
|
|
error: All the struct fields are matched to a wildcard pattern, consider using `..`.
|
|
|
|
--> $DIR/unneeded_field_pattern.rs:19:9
|
|
|
|
|
|
2017-02-08 14:58:07 +01:00
|
|
|
19 | Foo { a: _, b: _, c: _ } => {}
|
2017-02-07 21:05:30 +01:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
|
= help: Try with `Foo { .. }` instead
|
|
|
|
|
|
|
|
error: aborting due to 2 previous errors
|
|
|
|
|