rust/tests/ui/empty_structs_with_brackets.fixed

25 lines
627 B
Rust
Raw Normal View History

#![warn(clippy::empty_structs_with_brackets)]
2022-03-27 07:16:08 -05:00
#![allow(dead_code)]
2022-03-27 07:41:09 -05:00
pub struct MyEmptyStruct; // should trigger lint
struct MyEmptyTupleStruct; // should trigger lint
2022-03-27 07:16:08 -05: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 07:41:09 -05:00
struct MyStruct {
2022-03-27 07:16:08 -05:00
field: u8,
}
2022-03-27 07:41:09 -05:00
struct MyTupleStruct(usize, String); // should not trigger lint
2022-03-28 04:18:20 -05:00
struct MySingleTupleStruct(usize); // should not trigger lint
struct MyUnitLikeStruct; // should not trigger lint
2022-03-27 07:16:08 -05:00
fn main() {}