forked from rust-lang/rust
-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Detect unused structs which derived Default
- Loading branch information
Showing
6 changed files
with
77 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
#![deny(dead_code)] | ||
|
||
#[derive(Default)] | ||
struct T; //~ ERROR struct `T` is never constructed | ||
|
||
#[derive(Default)] | ||
struct Used; | ||
|
||
#[derive(Default)] | ||
enum E { | ||
#[default] | ||
A, | ||
B, //~ ERROR variant `B` is never constructed | ||
} | ||
|
||
// external crate can call T2::default() to construct T2, | ||
// so that no warnings for pub adts | ||
#[derive(Default)] | ||
pub struct T2 { | ||
_unread: i32, | ||
} | ||
|
||
fn main() { | ||
let _x: Used = Default::default(); | ||
} |
24 changes: 24 additions & 0 deletions
24
tests/ui/lint/dead-code/unused-struct-derive-default.stderr
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
error: struct `T` is never constructed | ||
--> $DIR/unused-struct-derive-default.rs:4:8 | ||
| | ||
LL | struct T; | ||
| ^ | ||
| | ||
= note: `T` has a derived impl for the trait `Default`, but this is intentionally ignored during dead code analysis | ||
note: the lint level is defined here | ||
--> $DIR/unused-struct-derive-default.rs:1:9 | ||
| | ||
LL | #![deny(dead_code)] | ||
| ^^^^^^^^^ | ||
|
||
error: variant `B` is never constructed | ||
--> $DIR/unused-struct-derive-default.rs:13:5 | ||
| | ||
LL | enum E { | ||
| - variant in this enum | ||
... | ||
LL | B, | ||
| ^ | ||
|
||
error: aborting due to 2 previous errors | ||
|