]> git.lizzy.rs Git - rust.git/blobdiff - tests/ui/redundant_field_names.stderr
Auto merge of #3603 - xfix:random-state-lint, r=phansch
[rust.git] / tests / ui / redundant_field_names.stderr
index 4f706d1fe08585bb7d7a181e691489361011f256..5675f8beb7ab1a6283876d1484225987a5973772 100644 (file)
@@ -1,76 +1,46 @@
 error: redundant field names in struct initialization
-  --> $DIR/redundant_field_names.rs:34:9
+  --> $DIR/redundant_field_names.rs:43:9
    |
-34 |         gender: gender,
+LL |         gender: gender,
    |         ^^^^^^^^^^^^^^ help: replace it with: `gender`
    |
-   = note: `-D redundant-field-names` implied by `-D warnings`
+   = note: `-D clippy::redundant-field-names` implied by `-D warnings`
 
 error: redundant field names in struct initialization
-  --> $DIR/redundant_field_names.rs:35:9
+  --> $DIR/redundant_field_names.rs:44:9
    |
-35 |         age: age,
+LL |         age: age,
    |         ^^^^^^^^ help: replace it with: `age`
 
 error: redundant field names in struct initialization
-  --> $DIR/redundant_field_names.rs:45:13
+  --> $DIR/redundant_field_names.rs:65:25
    |
-45 |     let _ = start..;
-   |             ^^^^^ help: replace it with: `start`
-
-error: redundant field names in struct initialization
-  --> $DIR/redundant_field_names.rs:46:15
-   |
-46 |     let _ = ..end;
-   |               ^^^ help: replace it with: `end`
-
-error: redundant field names in struct initialization
-  --> $DIR/redundant_field_names.rs:47:13
-   |
-47 |     let _ = start..end;
-   |             ^^^^^ help: replace it with: `start`
-
-error: redundant field names in struct initialization
-  --> $DIR/redundant_field_names.rs:47:20
-   |
-47 |     let _ = start..end;
-   |                    ^^^ help: replace it with: `end`
-
-error: redundant field names in struct initialization
-  --> $DIR/redundant_field_names.rs:49:16
-   |
-49 |     let _ = ..=end;
-   |                ^^^ help: replace it with: `end`
-
-error: redundant field names in struct initialization
-  --> $DIR/redundant_field_names.rs:53:25
-   |
-53 |     let _ = RangeFrom { start: start };
+LL |     let _ = RangeFrom { start: start };
    |                         ^^^^^^^^^^^^ help: replace it with: `start`
 
 error: redundant field names in struct initialization
-  --> $DIR/redundant_field_names.rs:54:23
+  --> $DIR/redundant_field_names.rs:66:23
    |
-54 |     let _ = RangeTo { end: end };
+LL |     let _ = RangeTo { end: end };
    |                       ^^^^^^^^ help: replace it with: `end`
 
 error: redundant field names in struct initialization
-  --> $DIR/redundant_field_names.rs:55:21
+  --> $DIR/redundant_field_names.rs:67:21
    |
-55 |     let _ = Range { start: start, end: end };
+LL |     let _ = Range { start: start, end: end };
    |                     ^^^^^^^^^^^^ help: replace it with: `start`
 
 error: redundant field names in struct initialization
-  --> $DIR/redundant_field_names.rs:55:35
+  --> $DIR/redundant_field_names.rs:67:35
    |
-55 |     let _ = Range { start: start, end: end };
+LL |     let _ = Range { start: start, end: end };
    |                                   ^^^^^^^^ help: replace it with: `end`
 
 error: redundant field names in struct initialization
-  --> $DIR/redundant_field_names.rs:57:32
+  --> $DIR/redundant_field_names.rs:69:32
    |
-57 |     let _ = RangeToInclusive { end: end };
+LL |     let _ = RangeToInclusive { end: end };
    |                                ^^^^^^^^ help: replace it with: `end`
 
-error: aborting due to 12 previous errors
+error: aborting due to 7 previous errors