rust/tests/ui/unneeded_field_pattern.stderr

20 lines
616 B
Plaintext
Raw Normal View History

error: You matched a field with a wildcard pattern. Consider using `..` instead
2018-12-09 23:27:19 -06:00
--> $DIR/unneeded_field_pattern.rs:23:15
|
2018-12-27 09:57:55 -06:00
LL | Foo { a: _, b: 0, .. } => {},
| ^^^^
|
= note: `-D clippy::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 `..`.
2018-12-09 23:27:19 -06:00
--> $DIR/unneeded_field_pattern.rs:25:9
|
2018-12-27 09:57:55 -06:00
LL | Foo { a: _, b: _, c: _ } => {},
| ^^^^^^^^^^^^^^^^^^^^^^^^
|
= help: Try with `Foo { .. }` instead
2018-01-16 10:06:27 -06:00
error: aborting due to 2 previous errors