about summary refs log tree commit diff
path: root/src/tools/clippy/tests/ui/drain_collect.stderr
blob: cfb1e01b65cf645c0ed517aa40ac5bb81e91888c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
error: you seem to be trying to move all elements into a new `BinaryHeap`
  --> tests/ui/drain_collect.rs:7:5
   |
LL |     b.drain().collect()
   |     ^^^^^^^^^^^^^^^^^^^ help: consider using `mem::take`: `std::mem::take(b)`
   |
note: the lint level is defined here
  --> tests/ui/drain_collect.rs:1:9
   |
LL | #![deny(clippy::drain_collect)]
   |         ^^^^^^^^^^^^^^^^^^^^^

error: you seem to be trying to move all elements into a new `HashMap`
  --> tests/ui/drain_collect.rs:16:5
   |
LL |     b.drain().collect()
   |     ^^^^^^^^^^^^^^^^^^^ help: consider using `mem::take`: `std::mem::take(b)`

error: you seem to be trying to move all elements into a new `HashSet`
  --> tests/ui/drain_collect.rs:25:5
   |
LL |     b.drain().collect()
   |     ^^^^^^^^^^^^^^^^^^^ help: consider using `mem::take`: `std::mem::take(b)`

error: you seem to be trying to move all elements into a new `Vec`
  --> tests/ui/drain_collect.rs:34:5
   |
LL |     b.drain(..).collect()
   |     ^^^^^^^^^^^^^^^^^^^^^ help: consider using `mem::take`: `std::mem::take(b)`

error: you seem to be trying to move all elements into a new `Vec`
  --> tests/ui/drain_collect.rs:43:5
   |
LL |     b.drain(..).collect()
   |     ^^^^^^^^^^^^^^^^^^^^^ help: consider using `mem::take`: `std::mem::take(b)`

error: you seem to be trying to move all elements into a new `Vec`
  --> tests/ui/drain_collect.rs:48:5
   |
LL |     b.drain(0..).collect()
   |     ^^^^^^^^^^^^^^^^^^^^^^ help: consider using `mem::take`: `std::mem::take(b)`

error: you seem to be trying to move all elements into a new `Vec`
  --> tests/ui/drain_collect.rs:53:5
   |
LL |     b.drain(..b.len()).collect()
   |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: consider using `mem::take`: `std::mem::take(b)`

error: you seem to be trying to move all elements into a new `Vec`
  --> tests/ui/drain_collect.rs:58:5
   |
LL |     b.drain(0..b.len()).collect()
   |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: consider using `mem::take`: `std::mem::take(b)`

error: you seem to be trying to move all elements into a new `Vec`
  --> tests/ui/drain_collect.rs:64:5
   |
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`
  --> tests/ui/drain_collect.rs:73:5
   |
LL |     b.drain(..).collect()
   |     ^^^^^^^^^^^^^^^^^^^^^ help: consider using `mem::take`: `std::mem::take(b)`

error: aborting due to 10 previous errors