2022-05-05 14:12:52 +00:00
|
|
|
error: empty drop implementation
|
2023-08-24 19:32:12 +00:00
|
|
|
--> $DIR/empty_drop.rs:7:1
|
2022-05-05 14:12: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`
|
2023-08-01 12:02:21 +00:00
|
|
|
= help: to override `-D warnings` add `#[allow(clippy::empty_drop)]`
|
2022-05-05 14:12:52 +00:00
|
|
|
|
|
|
|
error: empty drop implementation
|
2023-08-24 19:32:12 +00:00
|
|
|
--> $DIR/empty_drop.rs:23:1
|
2022-05-05 14:12: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
|
|
|
|
|