mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-24 13:43:17 +00:00
16 lines
589 B
Text
16 lines
589 B
Text
error: found empty brackets on struct declaration
|
|
--> $DIR/unit_like_struct_brackets.rs:5:25
|
|
|
|
|
LL | pub struct MyEmptyStruct {} // should trigger lint
|
|
| ^^^ help: remove the brackets: `;`
|
|
|
|
|
= note: `-D clippy::unit-like-struct-brackets` implied by `-D warnings`
|
|
|
|
error: found empty brackets on struct declaration
|
|
--> $DIR/unit_like_struct_brackets.rs:6:26
|
|
|
|
|
LL | struct MyEmptyTupleStruct(); // should trigger lint
|
|
| ^^^ help: remove the brackets: `;`
|
|
|
|
error: aborting due to 2 previous errors
|
|
|