rust/tests/ui/crashes/ice-4968.stderr
Samuel E. Moelius III 9c6a0b9c34 Update references
2020-11-08 07:07:49 -05:00

12 lines
452 B
Plaintext

error: non-binding let on a type that implements `Drop`
--> $DIR/ice-4968.rs:16:9
|
LL | let _: Vec<ManuallyDrop<T::Assoc>> = mem::transmute(slice);
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= note: `#[deny(clippy::let_underscore_drop)]` on by default
= help: consider using an underscore-prefixed named binding or dropping explicitly with `std::mem::drop`
error: aborting due to previous error