2020-11-08 23:32:12 +00:00
|
|
|
error: non-binding `let` on a type that implements `Drop`
|
2022-03-17 23:53:28 +00:00
|
|
|
--> $DIR/let_underscore_drop.rs:17:5
|
2020-11-07 23:26:14 +00:00
|
|
|
|
|
|
|
|
LL | let _ = Box::new(());
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
|
= note: `-D clippy::let-underscore-drop` implied by `-D warnings`
|
|
|
|
= help: consider using an underscore-prefixed named binding or dropping explicitly with `std::mem::drop`
|
|
|
|
|
2020-11-08 23:32:12 +00:00
|
|
|
error: non-binding `let` on a type that implements `Drop`
|
2022-03-17 23:53:28 +00:00
|
|
|
--> $DIR/let_underscore_drop.rs:18:5
|
2020-11-07 23:26:14 +00:00
|
|
|
|
|
|
|
|
LL | let _ = Droppable;
|
|
|
|
| ^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
|
= help: consider using an underscore-prefixed named binding or dropping explicitly with `std::mem::drop`
|
|
|
|
|
2020-11-08 23:32:12 +00:00
|
|
|
error: non-binding `let` on a type that implements `Drop`
|
2022-03-17 23:53:28 +00:00
|
|
|
--> $DIR/let_underscore_drop.rs:19:5
|
2020-11-07 23:26:14 +00:00
|
|
|
|
|
|
|
|
LL | let _ = Some(Droppable);
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
|
= help: consider using an underscore-prefixed named binding or dropping explicitly with `std::mem::drop`
|
|
|
|
|
|
|
|
error: aborting due to 3 previous errors
|
|
|
|
|