11error: you seem to be trying to use `Box<Vec<..>>`. Consider using just `Vec<..>`
2- --> $DIR/box_collection.rs:21:14
2+ --> $DIR/box_collection.rs:21:15
33 |
4- LL | fn test (foo: Box<Vec<bool>>) {}
5- | ^^^^^^^^^^^^^^
4+ LL | fn test1 (foo: Box<Vec<bool>>) {}
5+ | ^^^^^^^^^^^^^^
66 |
77 = note: `-D clippy::box-collection` implied by `-D warnings`
88 = help: `Vec<..>` is already on the heap, `Box<Vec<..>>` makes an extra allocation
@@ -23,5 +23,53 @@ LL | fn test4(foo: Box<HashMap<String, String>>) {}
2323 |
2424 = help: `HashMap<..>` is already on the heap, `Box<HashMap<..>>` makes an extra allocation
2525
26- error: aborting due to 3 previous errors
26+ error: you seem to be trying to use `Box<HashSet<..>>`. Consider using just `HashSet<..>`
27+ --> $DIR/box_collection.rs:32:15
28+ |
29+ LL | fn test5(foo: Box<HashSet<i64>>) {}
30+ | ^^^^^^^^^^^^^^^^^
31+ |
32+ = help: `HashSet<..>` is already on the heap, `Box<HashSet<..>>` makes an extra allocation
33+
34+ error: you seem to be trying to use `Box<VecDeque<..>>`. Consider using just `VecDeque<..>`
35+ --> $DIR/box_collection.rs:34:15
36+ |
37+ LL | fn test6(foo: Box<VecDeque<i32>>) {}
38+ | ^^^^^^^^^^^^^^^^^^
39+ |
40+ = help: `VecDeque<..>` is already on the heap, `Box<VecDeque<..>>` makes an extra allocation
41+
42+ error: you seem to be trying to use `Box<LinkedList<..>>`. Consider using just `LinkedList<..>`
43+ --> $DIR/box_collection.rs:36:15
44+ |
45+ LL | fn test7(foo: Box<LinkedList<i16>>) {}
46+ | ^^^^^^^^^^^^^^^^^^^^
47+ |
48+ = help: `LinkedList<..>` is already on the heap, `Box<LinkedList<..>>` makes an extra allocation
49+
50+ error: you seem to be trying to use `Box<BTreeMap<..>>`. Consider using just `BTreeMap<..>`
51+ --> $DIR/box_collection.rs:38:15
52+ |
53+ LL | fn test8(foo: Box<BTreeMap<i8, String>>) {}
54+ | ^^^^^^^^^^^^^^^^^^^^^^^^^
55+ |
56+ = help: `BTreeMap<..>` is already on the heap, `Box<BTreeMap<..>>` makes an extra allocation
57+
58+ error: you seem to be trying to use `Box<BTreeSet<..>>`. Consider using just `BTreeSet<..>`
59+ --> $DIR/box_collection.rs:40:15
60+ |
61+ LL | fn test9(foo: Box<BTreeSet<u64>>) {}
62+ | ^^^^^^^^^^^^^^^^^^
63+ |
64+ = help: `BTreeSet<..>` is already on the heap, `Box<BTreeSet<..>>` makes an extra allocation
65+
66+ error: you seem to be trying to use `Box<BinaryHeap<..>>`. Consider using just `BinaryHeap<..>`
67+ --> $DIR/box_collection.rs:42:16
68+ |
69+ LL | fn test10(foo: Box<BinaryHeap<u32>>) {}
70+ | ^^^^^^^^^^^^^^^^^^^^
71+ |
72+ = help: `BinaryHeap<..>` is already on the heap, `Box<BinaryHeap<..>>` makes an extra allocation
73+
74+ error: aborting due to 9 previous errors
2775
0 commit comments