mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-10 15:14:29 +00:00
36 lines
1,010 B
Text
36 lines
1,010 B
Text
error: usage of `mem::forget` on `Drop` type
|
|
--> tests/ui/mem_forget.rs:14:5
|
|
|
|
|
LL | memstuff::forget(six);
|
|
| ^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
= note: argument has type `std::sync::Arc<i32>`
|
|
= note: `-D clippy::mem-forget` implied by `-D warnings`
|
|
= help: to override `-D warnings` add `#[allow(clippy::mem_forget)]`
|
|
|
|
error: usage of `mem::forget` on `Drop` type
|
|
--> tests/ui/mem_forget.rs:19:5
|
|
|
|
|
LL | std::mem::forget(seven);
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
= note: argument has type `std::rc::Rc<i32>`
|
|
|
|
error: usage of `mem::forget` on `Drop` type
|
|
--> tests/ui/mem_forget.rs:24:5
|
|
|
|
|
LL | forgetSomething(eight);
|
|
| ^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
= note: argument has type `std::vec::Vec<i32>`
|
|
|
|
error: usage of `mem::forget` on type with `Drop` fields
|
|
--> tests/ui/mem_forget.rs:29:5
|
|
|
|
|
LL | std::mem::forget(string);
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
= note: argument has type `std::string::String`
|
|
|
|
error: aborting due to 4 previous errors
|
|
|