2022-03-25 19:31:52 +00:00
|
|
|
error: empty drop implementation
|
2023-07-27 11:40:22 +00:00
|
|
|
--> $DIR/empty_drop.rs:7:1
|
2022-03-25 19:31:52 +00:00
|
|
|
|
|
|
|
|
LL | / impl Drop for Foo {
|
|
|
|
LL | | fn drop(&mut self) {}
|
|
|
|
LL | | }
|
|
|
|
| |_^ help: try removing this impl
|
|
|
|
|
|
|
|
|
= note: `-D clippy::empty-drop` implied by `-D warnings`
|
|
|
|
|
|
|
|
error: empty drop implementation
|
2023-07-27 11:40:22 +00:00
|
|
|
--> $DIR/empty_drop.rs:23:1
|
2022-03-25 19:31:52 +00:00
|
|
|
|
|
|
|
|
LL | / impl Drop for Baz {
|
|
|
|
LL | | fn drop(&mut self) {
|
|
|
|
LL | | {}
|
|
|
|
LL | | }
|
|
|
|
LL | | }
|
|
|
|
| |_^ help: try removing this impl
|
|
|
|
|
|
|
|
error: aborting due to 2 previous errors
|
|
|
|
|