mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-11 07:34:18 +00:00
38d4ac7cea
Discussion previously happened in https://github.com/rust-lang/rust/pull/43498
22 lines
533 B
Text
22 lines
533 B
Text
error: usage of mem::forget on Drop type
|
|
--> $DIR/mem_forget.rs:14:5
|
|
|
|
|
LL | memstuff::forget(six);
|
|
| ^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
= note: `-D clippy::mem-forget` implied by `-D warnings`
|
|
|
|
error: usage of mem::forget on Drop type
|
|
--> $DIR/mem_forget.rs:17:5
|
|
|
|
|
LL | std::mem::forget(seven);
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
error: usage of mem::forget on Drop type
|
|
--> $DIR/mem_forget.rs:20:5
|
|
|
|
|
LL | forgetSomething(eight);
|
|
| ^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
error: aborting due to 3 previous errors
|
|
|