2022-06-10 03:14:24 +00:00
|
|
|
error: field `f` is never read
|
2021-05-21 17:35:49 +00:00
|
|
|
--> $DIR/clone-debug-dead-code.rs:6:12
|
|
|
|
|
|
|
|
|
LL | struct A { f: () }
|
2022-06-22 18:33:59 +00:00
|
|
|
| - ^
|
2022-06-10 03:14:24 +00:00
|
|
|
| |
|
|
|
|
| field in this struct
|
2021-05-21 17:35:49 +00:00
|
|
|
|
|
|
|
|
note: the lint level is defined here
|
|
|
|
--> $DIR/clone-debug-dead-code.rs:4:11
|
|
|
|
|
|
|
|
|
LL | #![forbid(dead_code)]
|
|
|
|
| ^^^^^^^^^
|
|
|
|
|
2022-06-10 03:14:24 +00:00
|
|
|
error: field `f` is never read
|
2021-05-21 17:35:49 +00:00
|
|
|
--> $DIR/clone-debug-dead-code.rs:10:12
|
|
|
|
|
|
|
|
|
LL | struct B { f: () }
|
2022-06-22 18:33:59 +00:00
|
|
|
| - ^
|
2022-06-10 03:14:24 +00:00
|
|
|
| |
|
|
|
|
| field in this struct
|
2022-01-11 20:06:18 +00:00
|
|
|
|
|
2022-06-02 09:13:31 +00:00
|
|
|
= note: `B` has a derived impl for the trait `Clone`, but this is intentionally ignored during dead code analysis
|
2021-05-21 17:35:49 +00:00
|
|
|
|
2022-06-10 03:14:24 +00:00
|
|
|
error: field `f` is never read
|
2021-05-21 17:35:49 +00:00
|
|
|
--> $DIR/clone-debug-dead-code.rs:14:12
|
|
|
|
|
|
|
|
|
LL | struct C { f: () }
|
2022-06-22 18:33:59 +00:00
|
|
|
| - ^
|
2022-06-10 03:14:24 +00:00
|
|
|
| |
|
|
|
|
| field in this struct
|
2022-01-11 20:06:18 +00:00
|
|
|
|
|
2022-06-02 09:13:31 +00:00
|
|
|
= note: `C` has a derived impl for the trait `Debug`, but this is intentionally ignored during dead code analysis
|
2021-05-21 17:35:49 +00:00
|
|
|
|
2022-06-10 03:14:24 +00:00
|
|
|
error: field `f` is never read
|
2021-05-21 17:35:49 +00:00
|
|
|
--> $DIR/clone-debug-dead-code.rs:18:12
|
|
|
|
|
|
|
|
|
LL | struct D { f: () }
|
2022-06-22 18:33:59 +00:00
|
|
|
| - ^
|
2022-06-10 03:14:24 +00:00
|
|
|
| |
|
|
|
|
| field in this struct
|
2022-01-11 20:06:18 +00:00
|
|
|
|
|
2022-06-02 09:13:31 +00:00
|
|
|
= note: `D` has derived impls for the traits `Clone` and `Debug`, but these are intentionally ignored during dead code analysis
|
2021-05-21 17:35:49 +00:00
|
|
|
|
2022-06-10 03:14:24 +00:00
|
|
|
error: field `f` is never read
|
2021-05-21 17:35:49 +00:00
|
|
|
--> $DIR/clone-debug-dead-code.rs:21:12
|
|
|
|
|
|
|
|
|
LL | struct E { f: () }
|
2022-06-22 18:33:59 +00:00
|
|
|
| - ^
|
2022-06-10 03:14:24 +00:00
|
|
|
| |
|
|
|
|
| field in this struct
|
2021-05-21 17:35:49 +00:00
|
|
|
|
|
|
|
error: aborting due to 5 previous errors
|
|
|
|
|