rust-clippy/tests/ui/empty_structs_with_brackets.rs

26 lines
646 B
Rust
Raw Normal View History

//@run-rustfix
#![warn(clippy::empty_structs_with_brackets)]
2022-03-27 12:16:08 +00:00
#![allow(dead_code)]
2022-03-27 12:41:09 +00:00
pub struct MyEmptyStruct {} // should trigger lint
struct MyEmptyTupleStruct(); // should trigger lint
2022-03-27 12:16:08 +00:00
// should not trigger lint
struct MyCfgStruct {
#[cfg(feature = "thisisneverenabled")]
field: u8,
}
// should not trigger lint
struct MyCfgTupleStruct(#[cfg(feature = "thisisneverenabled")] u8);
// should not trigger lint
2022-03-27 12:41:09 +00:00
struct MyStruct {
2022-03-27 12:16:08 +00:00
field: u8,
}
2022-03-27 12:41:09 +00:00
struct MyTupleStruct(usize, String); // should not trigger lint
2022-03-28 09:18:20 +00:00
struct MySingleTupleStruct(usize); // should not trigger lint
struct MyUnitLikeStruct; // should not trigger lint
2022-03-27 12:16:08 +00:00
fn main() {}