Allow unused fields in some tests
The dead_code lint was previously eroneously missing those. Since this lint bug has been fixed, the unused fields warnings need to be fixed. Most of them are marked as `#[allow(dead_code)]`. Other warnings are fixed by changing visibility of modules.
This commit is contained in:
parent
ccd99b384e
commit
701dd5bc9d
4 changed files with 4 additions and 2 deletions
|
@ -3,6 +3,7 @@
|
|||
mod foo {
|
||||
pub struct Point {
|
||||
pub x: i32,
|
||||
#[allow(dead_code)]
|
||||
pub y: i32,
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
//@ run-rustfix
|
||||
mod a {
|
||||
pub mod a {
|
||||
pub struct A(pub String);
|
||||
}
|
||||
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
//@ run-rustfix
|
||||
mod a {
|
||||
pub mod a {
|
||||
pub struct A(pub(self)String);
|
||||
}
|
||||
|
||||
|
|
|
@ -15,6 +15,7 @@ macro_rules! duplicate {
|
|||
|
||||
duplicate! {
|
||||
pub union U {
|
||||
#[allow(dead_code)]
|
||||
pub a: u8
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue