2022-10-22 05:48:20 -05:00
|
|
|
error: fields `field1`, `field2`, `field3`, and `field4` are never read
|
2022-06-08 02:34:58 -05:00
|
|
|
--> $DIR/clone-debug-dead-code-in-the-same-struct.rs:6:5
|
|
|
|
|
|
2022-06-09 22:14:24 -05:00
|
|
|
LL | pub struct Whatever {
|
|
|
|
| -------- fields in this struct
|
|
|
|
LL | pub field0: (),
|
2022-06-08 02:34:58 -05:00
|
|
|
LL | field1: (),
|
2022-06-22 13:33:59 -05:00
|
|
|
| ^^^^^^
|
2022-06-09 22:14:24 -05:00
|
|
|
LL | field2: (),
|
2022-06-22 13:33:59 -05:00
|
|
|
| ^^^^^^
|
2022-06-09 22:14:24 -05:00
|
|
|
LL | field3: (),
|
2022-06-22 13:33:59 -05:00
|
|
|
| ^^^^^^
|
2022-06-09 22:14:24 -05:00
|
|
|
LL | field4: (),
|
2022-06-22 13:33:59 -05:00
|
|
|
| ^^^^^^
|
2022-06-08 02:34:58 -05:00
|
|
|
|
|
2022-09-18 10:55:36 -05:00
|
|
|
= note: `Whatever` has a derived impl for the trait `Debug`, but this is intentionally ignored during dead code analysis
|
2022-06-08 02:34:58 -05:00
|
|
|
note: the lint level is defined here
|
|
|
|
--> $DIR/clone-debug-dead-code-in-the-same-struct.rs:1:11
|
|
|
|
|
|
|
|
|
LL | #![forbid(dead_code)]
|
|
|
|
| ^^^^^^^^^
|
|
|
|
|
2022-06-09 22:14:24 -05:00
|
|
|
error: aborting due to previous error
|
2022-06-08 02:34:58 -05:00
|
|
|
|