rust/clippy_tests/examples/unneeded_field_pattern.stderr

23 lines
714 B
Plaintext
Raw Normal View History

error: You matched a field with a wildcard pattern. Consider using `..` instead
--> unneeded_field_pattern.rs:17:15
|
2017-02-08 07:58:07 -06:00
17 | Foo { a: _, b: 0, .. } => {}
| ^^^^
|
= note: `-D unneeded-field-pattern` implied by `-D warnings`
= help: Try with `Foo { b: 0, .. }`
error: All the struct fields are matched to a wildcard pattern, consider using `..`.
--> unneeded_field_pattern.rs:19:9
|
2017-02-08 07:58:07 -06:00
19 | Foo { a: _, b: _, c: _ } => {}
| ^^^^^^^^^^^^^^^^^^^^^^^^
|
= note: `-D unneeded-field-pattern` implied by `-D warnings`
= help: Try with `Foo { .. }` instead
error: aborting due to previous error(s)
To learn more, run the command again with --verbose.