2022-05-05 14:12:52 +00:00
|
|
|
error: call to `std::mem::drop` with a value that does not implement `Drop`. Dropping such a type only extends its contained lifetimes
|
2022-04-07 17:39:59 +00:00
|
|
|
--> $DIR/drop_non_drop.rs:22:5
|
|
|
|
|
|
|
|
|
LL | drop(Foo);
|
|
|
|
| ^^^^^^^^^
|
|
|
|
|
|
|
|
|
note: argument has type `main::Foo`
|
|
|
|
--> $DIR/drop_non_drop.rs:22:10
|
|
|
|
|
|
|
|
|
LL | drop(Foo);
|
|
|
|
| ^^^
|
2022-09-22 16:04:22 +00:00
|
|
|
= note: `-D clippy::drop-non-drop` implied by `-D warnings`
|
2022-04-07 17:39:59 +00:00
|
|
|
|
2022-05-05 14:12:52 +00:00
|
|
|
error: call to `std::mem::drop` with a value that does not implement `Drop`. Dropping such a type only extends its contained lifetimes
|
2022-04-07 17:39:59 +00:00
|
|
|
--> $DIR/drop_non_drop.rs:37:5
|
|
|
|
|
|
|
|
|
LL | drop(Baz(Foo));
|
|
|
|
| ^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
|
note: argument has type `main::Baz<main::Foo>`
|
|
|
|
--> $DIR/drop_non_drop.rs:37:10
|
|
|
|
|
|
|
|
|
LL | drop(Baz(Foo));
|
|
|
|
| ^^^^^^^^
|
|
|
|
|
|
|
|
error: aborting due to 2 previous errors
|
|
|
|
|