mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-10 07:04:18 +00:00
20 lines
674 B
Text
20 lines
674 B
Text
error: found empty brackets on struct declaration
|
|
--> tests/ui/empty_structs_with_brackets.rs:4:25
|
|
|
|
|
LL | pub struct MyEmptyStruct {} // should trigger lint
|
|
| ^^^
|
|
|
|
|
= note: `-D clippy::empty-structs-with-brackets` implied by `-D warnings`
|
|
= help: to override `-D warnings` add `#[allow(clippy::empty_structs_with_brackets)]`
|
|
= help: remove the brackets
|
|
|
|
error: found empty brackets on struct declaration
|
|
--> tests/ui/empty_structs_with_brackets.rs:5:26
|
|
|
|
|
LL | struct MyEmptyTupleStruct(); // should trigger lint
|
|
| ^^^
|
|
|
|
|
= help: remove the brackets
|
|
|
|
error: aborting due to 2 previous errors
|
|
|