rust/tests/ui/drain_collect.stderr

69 lines
2.4 KiB
Plaintext
Raw Normal View History

2023-05-26 17:58:44 -05:00
error: you seem to be trying to move all elements into a new `BinaryHeap`
2024-02-17 06:16:29 -06:00
--> tests/ui/drain_collect.rs:7:5
2023-05-26 17:58:44 -05:00
|
LL | b.drain().collect()
| ^^^^^^^^^^^^^^^^^^^ help: consider using `mem::take`: `std::mem::take(b)`
2023-05-26 17:58:44 -05:00
|
note: the lint level is defined here
2024-02-17 06:16:29 -06:00
--> tests/ui/drain_collect.rs:1:9
2023-05-26 17:58:44 -05:00
|
LL | #![deny(clippy::drain_collect)]
| ^^^^^^^^^^^^^^^^^^^^^
error: you seem to be trying to move all elements into a new `HashMap`
2024-02-17 06:16:29 -06:00
--> tests/ui/drain_collect.rs:15:5
2023-05-26 17:58:44 -05:00
|
LL | b.drain().collect()
| ^^^^^^^^^^^^^^^^^^^ help: consider using `mem::take`: `std::mem::take(b)`
2023-05-26 17:58:44 -05:00
error: you seem to be trying to move all elements into a new `HashSet`
2024-02-17 06:16:29 -06:00
--> tests/ui/drain_collect.rs:23:5
2023-05-26 17:58:44 -05:00
|
LL | b.drain().collect()
| ^^^^^^^^^^^^^^^^^^^ help: consider using `mem::take`: `std::mem::take(b)`
2023-05-26 17:58:44 -05:00
error: you seem to be trying to move all elements into a new `Vec`
2024-02-17 06:16:29 -06:00
--> tests/ui/drain_collect.rs:31:5
2023-05-26 17:58:44 -05:00
|
LL | b.drain(..).collect()
| ^^^^^^^^^^^^^^^^^^^^^ help: consider using `mem::take`: `std::mem::take(b)`
2023-05-26 17:58:44 -05:00
error: you seem to be trying to move all elements into a new `Vec`
2024-02-17 06:16:29 -06:00
--> tests/ui/drain_collect.rs:39:5
2023-05-26 17:58:44 -05:00
|
LL | b.drain(..).collect()
| ^^^^^^^^^^^^^^^^^^^^^ help: consider using `mem::take`: `std::mem::take(b)`
2023-05-26 17:58:44 -05:00
error: you seem to be trying to move all elements into a new `Vec`
2024-02-17 06:16:29 -06:00
--> tests/ui/drain_collect.rs:43:5
2023-05-26 17:58:44 -05:00
|
LL | b.drain(0..).collect()
| ^^^^^^^^^^^^^^^^^^^^^^ help: consider using `mem::take`: `std::mem::take(b)`
2023-05-26 17:58:44 -05:00
error: you seem to be trying to move all elements into a new `Vec`
2024-02-17 06:16:29 -06:00
--> tests/ui/drain_collect.rs:47:5
2023-05-26 17:58:44 -05:00
|
LL | b.drain(..b.len()).collect()
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: consider using `mem::take`: `std::mem::take(b)`
2023-05-26 17:58:44 -05:00
error: you seem to be trying to move all elements into a new `Vec`
2024-02-17 06:16:29 -06:00
--> tests/ui/drain_collect.rs:51:5
2023-05-26 17:58:44 -05:00
|
LL | b.drain(0..b.len()).collect()
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: consider using `mem::take`: `std::mem::take(b)`
2023-05-26 17:58:44 -05:00
error: you seem to be trying to move all elements into a new `Vec`
2024-02-17 06:16:29 -06:00
--> tests/ui/drain_collect.rs:56:5
2023-05-26 17:58:44 -05:00
|
LL | b.drain(..).collect()
| ^^^^^^^^^^^^^^^^^^^^^ help: consider using `mem::take`: `std::mem::take(&mut b)`
error: you seem to be trying to move all elements into a new `String`
2024-02-17 06:16:29 -06:00
--> tests/ui/drain_collect.rs:64:5
|
LL | b.drain(..).collect()
| ^^^^^^^^^^^^^^^^^^^^^ help: consider using `mem::take`: `std::mem::take(b)`
error: aborting due to 10 previous errors
2023-05-26 17:58:44 -05:00