rust-clippy/tests/ui/unit_like_struct_brackets.stderr

17 lines
566 B
Text
Raw Normal View History

2022-03-27 14:16:08 +02:00
error: found empty brackets on struct declaration
--> $DIR/unit_like_struct_brackets.rs:5:25
|
2022-03-27 15:26:36 +02:00
LL | pub struct MyEmptyStruct {} // should trigger lint
2022-03-27 14:16:08 +02:00
| ^^^ 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
|
2022-03-27 15:26:36 +02:00
LL | struct MyEmptyTupleStruct(); // should trigger lint
2022-03-27 14:16:08 +02:00
| ^^^ help: remove the brackets: `;`
error: aborting due to 2 previous errors