2022-10-22 18:48:20 +08:00
|
|
|
error: fields `field1`, `field2`, `field3`, and `field4` are never read
|
2022-06-08 16:34:58 +09:00
|
|
|
--> $DIR/clone-debug-dead-code-in-the-same-struct.rs:6:5
|
|
|
|
|
|
2022-06-10 12:14:24 +09:00
|
|
|
LL | pub struct Whatever {
|
|
|
|
| -------- fields in this struct
|
|
|
|
LL | pub field0: (),
|
2022-06-08 16:34:58 +09:00
|
|
|
LL | field1: (),
|
2022-06-22 20:33:59 +02:00
|
|
|
| ^^^^^^
|
2022-06-10 12:14:24 +09:00
|
|
|
LL | field2: (),
|
2022-06-22 20:33:59 +02:00
|
|
|
| ^^^^^^
|
2022-06-10 12:14:24 +09:00
|
|
|
LL | field3: (),
|
2022-06-22 20:33:59 +02:00
|
|
|
| ^^^^^^
|
2022-06-10 12:14:24 +09:00
|
|
|
LL | field4: (),
|
2022-06-22 20:33:59 +02:00
|
|
|
| ^^^^^^
|
2022-06-08 16:34:58 +09:00
|
|
|
|
|
2022-09-18 19:55:36 +04:00
|
|
|
= note: `Whatever` has a derived impl for the trait `Debug`, but this is intentionally ignored during dead code analysis
|
2022-06-08 16:34:58 +09: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-10 12:14:24 +09:00
|
|
|
error: aborting due to previous error
|
2022-06-08 16:34:58 +09:00
|
|
|
|