2020-01-06 15:36:33 +09:00
|
|
|
error: usage of `mem::forget` on `Drop` type
|
2024-02-27 15:25:18 +01:00
|
|
|
--> tests/ui/mem_forget.rs:14:5
|
2017-02-07 21:05:30 +01:00
|
|
|
|
|
2018-12-27 16:57:55 +01:00
|
|
|
LL | memstuff::forget(six);
|
2017-02-07 21:05:30 +01:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
2023-07-02 14:35:19 +02:00
|
|
|
= note: argument has type `std::sync::Arc<i32>`
|
2018-08-01 16:30:44 +02:00
|
|
|
= note: `-D clippy::mem-forget` implied by `-D warnings`
|
2023-08-01 14:02:21 +02:00
|
|
|
= help: to override `-D warnings` add `#[allow(clippy::mem_forget)]`
|
2017-02-07 21:05:30 +01:00
|
|
|
|
2020-01-06 15:36:33 +09:00
|
|
|
error: usage of `mem::forget` on `Drop` type
|
2024-02-27 15:25:18 +01:00
|
|
|
--> tests/ui/mem_forget.rs:19:5
|
2017-02-07 21:05:30 +01:00
|
|
|
|
|
2018-12-27 16:57:55 +01:00
|
|
|
LL | std::mem::forget(seven);
|
2017-02-07 21:05:30 +01:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^
|
2023-07-02 14:35:19 +02:00
|
|
|
|
|
|
|
|
= note: argument has type `std::rc::Rc<i32>`
|
2017-02-07 21:05:30 +01:00
|
|
|
|
2020-01-06 15:36:33 +09:00
|
|
|
error: usage of `mem::forget` on `Drop` type
|
2024-02-27 15:25:18 +01:00
|
|
|
--> tests/ui/mem_forget.rs:24:5
|
2017-02-07 21:05:30 +01:00
|
|
|
|
|
2018-12-27 16:57:55 +01:00
|
|
|
LL | forgetSomething(eight);
|
2017-02-07 21:05:30 +01:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^
|
2023-07-02 14:35:19 +02:00
|
|
|
|
|
|
|
|
= note: argument has type `std::vec::Vec<i32>`
|
|
|
|
|
|
|
|
error: usage of `mem::forget` on type with `Drop` fields
|
2024-02-27 15:25:18 +01:00
|
|
|
--> tests/ui/mem_forget.rs:29:5
|
2023-07-02 14:35:19 +02:00
|
|
|
|
|
|
|
|
LL | std::mem::forget(string);
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
|
= note: argument has type `std::string::String`
|
2017-02-07 21:05:30 +01:00
|
|
|
|
2023-07-02 14:35:19 +02:00
|
|
|
error: aborting due to 4 previous errors
|
2018-01-16 17:06:27 +01:00
|
|
|
|