6b6253016f
rustc now (https://github.com/rust-lang/rust/issues/33525) does not report an error count anymore, because it was not correct in many cases.
84 lines
2.2 KiB
Plaintext
84 lines
2.2 KiB
Plaintext
error: calls to `std::mem::drop` with a value that implements Copy. Dropping a copy leaves the original intact.
|
|
--> drop_forget_copy.rs:33:5
|
|
|
|
|
33 | drop(s1);
|
|
| ^^^^^^^^
|
|
|
|
|
= note: `-D drop-copy` implied by `-D warnings`
|
|
note: argument has type SomeStruct
|
|
--> drop_forget_copy.rs:33:10
|
|
|
|
|
33 | drop(s1);
|
|
| ^^
|
|
|
|
error: calls to `std::mem::drop` with a value that implements Copy. Dropping a copy leaves the original intact.
|
|
--> drop_forget_copy.rs:34:5
|
|
|
|
|
34 | drop(s2);
|
|
| ^^^^^^^^
|
|
|
|
|
= note: `-D drop-copy` implied by `-D warnings`
|
|
note: argument has type SomeStruct
|
|
--> drop_forget_copy.rs:34:10
|
|
|
|
|
34 | drop(s2);
|
|
| ^^
|
|
|
|
error: calls to `std::mem::drop` with a value that implements Copy. Dropping a copy leaves the original intact.
|
|
--> drop_forget_copy.rs:36:5
|
|
|
|
|
36 | drop(s4);
|
|
| ^^^^^^^^
|
|
|
|
|
= note: `-D drop-copy` implied by `-D warnings`
|
|
note: argument has type SomeStruct
|
|
--> drop_forget_copy.rs:36:10
|
|
|
|
|
36 | drop(s4);
|
|
| ^^
|
|
|
|
error: calls to `std::mem::forget` with a value that implements Copy. Forgetting a copy leaves the original intact.
|
|
--> drop_forget_copy.rs:39:5
|
|
|
|
|
39 | forget(s1);
|
|
| ^^^^^^^^^^
|
|
|
|
|
= note: `-D forget-copy` implied by `-D warnings`
|
|
note: argument has type SomeStruct
|
|
--> drop_forget_copy.rs:39:12
|
|
|
|
|
39 | forget(s1);
|
|
| ^^
|
|
|
|
error: calls to `std::mem::forget` with a value that implements Copy. Forgetting a copy leaves the original intact.
|
|
--> drop_forget_copy.rs:40:5
|
|
|
|
|
40 | forget(s2);
|
|
| ^^^^^^^^^^
|
|
|
|
|
= note: `-D forget-copy` implied by `-D warnings`
|
|
note: argument has type SomeStruct
|
|
--> drop_forget_copy.rs:40:12
|
|
|
|
|
40 | forget(s2);
|
|
| ^^
|
|
|
|
error: calls to `std::mem::forget` with a value that implements Copy. Forgetting a copy leaves the original intact.
|
|
--> drop_forget_copy.rs:42:5
|
|
|
|
|
42 | forget(s4);
|
|
| ^^^^^^^^^^
|
|
|
|
|
= note: `-D forget-copy` implied by `-D warnings`
|
|
note: argument has type SomeStruct
|
|
--> drop_forget_copy.rs:42:12
|
|
|
|
|
42 | forget(s4);
|
|
| ^^
|
|
|
|
error: aborting due to previous error(s)
|
|
|
|
error: Could not compile `clippy_tests`.
|
|
|
|
To learn more, run the command again with --verbose.
|