2020-03-01 10:36:14 -06:00
|
|
|
error: unnecessary use of `..` pattern in struct binding. All fields were already bound
|
2023-10-17 11:34:27 -05:00
|
|
|
--> $DIR/rest_pat_in_fully_bound_structs.rs:23:9
|
2020-03-01 10:36:14 -06:00
|
|
|
|
|
|
|
|
LL | A { a: 5, b: 42, c: "", .. } => {}, // Lint
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
|
= help: consider removing `..` from this binding
|
2022-09-22 11:04:22 -05:00
|
|
|
= note: `-D clippy::rest-pat-in-fully-bound-structs` implied by `-D warnings`
|
2023-08-01 07:02:21 -05:00
|
|
|
= help: to override `-D warnings` add `#[allow(clippy::rest_pat_in_fully_bound_structs)]`
|
2020-03-01 10:36:14 -06:00
|
|
|
|
|
|
|
error: unnecessary use of `..` pattern in struct binding. All fields were already bound
|
2023-10-17 11:34:27 -05:00
|
|
|
--> $DIR/rest_pat_in_fully_bound_structs.rs:25:9
|
2020-03-01 10:36:14 -06:00
|
|
|
|
|
2023-08-24 14:32:12 -05:00
|
|
|
LL | A { a: 0, b: 0, c: "", .. } => {}, // Lint
|
2020-03-01 10:36:14 -06:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
|
= help: consider removing `..` from this binding
|
|
|
|
|
|
|
|
error: unnecessary use of `..` pattern in struct binding. All fields were already bound
|
2023-10-17 11:34:27 -05:00
|
|
|
--> $DIR/rest_pat_in_fully_bound_structs.rs:32:9
|
2020-03-01 10:36:14 -06:00
|
|
|
|
|
|
|
|
LL | A { a: 0, b: 0, c: "", .. } => {}, // Lint
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
|
= help: consider removing `..` from this binding
|
|
|
|
|
|
|
|
error: aborting due to 3 previous errors
|
|
|
|
|