2020-01-06 00:36:33 -06:00
|
|
|
error: usage of `mem::forget` on `Drop` type
|
2019-01-07 15:33:18 -06:00
|
|
|
--> $DIR/mem_forget.rs:14:5
|
2017-02-07 14:05:30 -06:00
|
|
|
|
|
2018-12-27 09:57:55 -06:00
|
|
|
LL | memstuff::forget(six);
|
2017-02-07 14:05:30 -06:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
2023-06-25 04:28:40 -05:00
|
|
|
= note: argument has type `std::sync::Arc<i32>`
|
2018-08-01 09:30:44 -05:00
|
|
|
= note: `-D clippy::mem-forget` implied by `-D warnings`
|
2017-02-07 14:05:30 -06:00
|
|
|
|
2020-01-06 00:36:33 -06:00
|
|
|
error: usage of `mem::forget` on `Drop` type
|
2019-01-07 15:33:18 -06:00
|
|
|
--> $DIR/mem_forget.rs:17:5
|
2017-02-07 14:05:30 -06:00
|
|
|
|
|
2018-12-27 09:57:55 -06:00
|
|
|
LL | std::mem::forget(seven);
|
2017-02-07 14:05:30 -06:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^
|
2023-06-21 15:56:24 -05:00
|
|
|
|
|
2023-06-25 04:28:40 -05:00
|
|
|
= note: argument has type `std::rc::Rc<i32>`
|
2017-02-07 14:05:30 -06:00
|
|
|
|
2020-01-06 00:36:33 -06:00
|
|
|
error: usage of `mem::forget` on `Drop` type
|
2019-01-07 15:33:18 -06:00
|
|
|
--> $DIR/mem_forget.rs:20:5
|
2017-02-07 14:05:30 -06:00
|
|
|
|
|
2018-12-27 09:57:55 -06:00
|
|
|
LL | forgetSomething(eight);
|
2017-02-07 14:05:30 -06:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^
|
2023-06-21 15:56:24 -05:00
|
|
|
|
|
2023-06-25 04:28:40 -05:00
|
|
|
= note: argument has type `std::vec::Vec<i32>`
|
2017-02-07 14:05:30 -06:00
|
|
|
|
2023-06-20 13:37:03 -05:00
|
|
|
error: usage of `mem::forget` on type with `Drop` fields
|
|
|
|
--> $DIR/mem_forget.rs:23:5
|
|
|
|
|
|
|
|
|
LL | std::mem::forget(string);
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^
|
2023-06-21 15:56:24 -05:00
|
|
|
|
|
2023-06-25 04:28:40 -05:00
|
|
|
= note: argument has type `std::string::String`
|
2023-06-20 13:37:03 -05:00
|
|
|
|
|
|
|
error: aborting due to 4 previous errors
|
2018-01-16 10:06:27 -06:00
|
|
|
|