mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-10 07:04:18 +00:00
24 lines
631 B
Rust
24 lines
631 B
Rust
#![warn(clippy::empty_structs_with_brackets)]
|
|
#![allow(dead_code)]
|
|
|
|
pub struct MyEmptyStruct {} // should trigger lint
|
|
struct MyEmptyTupleStruct(); // should trigger lint
|
|
|
|
// 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
|
|
struct MyStruct {
|
|
field: u8,
|
|
}
|
|
struct MyTupleStruct(usize, String); // should not trigger lint
|
|
struct MySingleTupleStruct(usize); // should not trigger lint
|
|
struct MyUnitLikeStruct; // should not trigger lint
|
|
|
|
fn main() {}
|