]> git.lizzy.rs Git - rust.git/blobdiff - tests/ui/unneeded_field_pattern.stderr
Auto merge of #3603 - xfix:random-state-lint, r=phansch
[rust.git] / tests / ui / unneeded_field_pattern.stderr
index 40aa4f524feed9b3a04e0e659e9ab9eade6cede4..23e35923f83049db44f5c91f8e24fba83af11cbc 100644 (file)
@@ -1,16 +1,16 @@
 error: You matched a field with a wildcard pattern. Consider using `..` instead
-  --> $DIR/unneeded_field_pattern.rs:17:15
+  --> $DIR/unneeded_field_pattern.rs:23:15
    |
-17 |         Foo { a: _, b: 0, .. } => {}
+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 `..`.
-  --> $DIR/unneeded_field_pattern.rs:19:9
+  --> $DIR/unneeded_field_pattern.rs:25:9
    |
-19 |         Foo { a: _, b: _, c: _ } => {}
+LL |         Foo { a: _, b: _, c: _ } => {},
    |         ^^^^^^^^^^^^^^^^^^^^^^^^
    |
    = help: Try with `Foo { .. }` instead