rust-clippy/tests/ui/unit_like_struct_brackets.rs

26 lines
644 B
Rust
Raw Normal View History

2022-03-27 12:16:08 +00:00
// run-rustfix
#![warn(clippy::unit_like_struct_brackets)]
#![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() {}