rust-clippy/tests/ui/mem_forget.stderr

37 lines
1,010 B
Text
Raw Normal View History

2020-01-06 06:36:33 +00:00
error: usage of `mem::forget` on `Drop` type
2024-02-17 12:16:29 +00:00
--> tests/ui/mem_forget.rs:14:5
|
2018-12-27 15:57:55 +00:00
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)]`
2020-01-06 06:36:33 +00:00
error: usage of `mem::forget` on `Drop` type
2024-02-17 12:16:29 +00:00
--> tests/ui/mem_forget.rs:19:5
|
2018-12-27 15:57:55 +00:00
LL | std::mem::forget(seven);
| ^^^^^^^^^^^^^^^^^^^^^^^
|
= note: argument has type `std::rc::Rc<i32>`
2020-01-06 06:36:33 +00:00
error: usage of `mem::forget` on `Drop` type
2024-02-17 12:16:29 +00:00
--> tests/ui/mem_forget.rs:24:5
|
2018-12-27 15:57:55 +00:00
LL | forgetSomething(eight);
| ^^^^^^^^^^^^^^^^^^^^^^
|
= note: argument has type `std::vec::Vec<i32>`
error: usage of `mem::forget` on type with `Drop` fields
2024-02-17 12:16:29 +00:00
--> 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
2018-01-16 16:06:27 +00:00