rust-clippy/tests/ui/unit_like_struct_brackets.rs

15 lines
329 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
2022-03-27 12:41:09 +00:00
struct MyStruct {
// should not trigger lint
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-27 12:16:08 +00:00
fn main() {}