summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/tests/ui/repeat_vec_with_capacity.stderr
blob: 10b5f121420e1a2e9b17485917614e8ae9a57e22 (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
error: repeating `Vec::with_capacity` using `vec![x; n]`, which does not retain capacity
  --> $DIR/repeat_vec_with_capacity.rs:5:9
   |
LL |         vec![Vec::<()>::with_capacity(42); 123];
   |         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
   |
   = note: only the last `Vec` will have the capacity
   = note: `-D clippy::repeat-vec-with-capacity` implied by `-D warnings`
   = help: to override `-D warnings` add `#[allow(clippy::repeat_vec_with_capacity)]`
help: if you intended to initialize multiple `Vec`s with an initial capacity, try
   |
LL |         (0..123).map(|_| Vec::<()>::with_capacity(42)).collect::<Vec<_>>();
   |         ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

error: repeating `Vec::with_capacity` using `vec![x; n]`, which does not retain capacity
  --> $DIR/repeat_vec_with_capacity.rs:11:9
   |
LL |         vec![Vec::<()>::with_capacity(42); n];
   |         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
   |
   = note: only the last `Vec` will have the capacity
help: if you intended to initialize multiple `Vec`s with an initial capacity, try
   |
LL |         (0..n).map(|_| Vec::<()>::with_capacity(42)).collect::<Vec<_>>();
   |         ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

error: repeating `Vec::with_capacity` using `iter::repeat`, which does not retain capacity
  --> $DIR/repeat_vec_with_capacity.rs:26:9
   |
LL |         std::iter::repeat(Vec::<()>::with_capacity(42));
   |         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
   |
   = note: none of the yielded `Vec`s will have the requested capacity
help: if you intended to create an iterator that yields `Vec`s with an initial capacity, try
   |
LL |         std::iter::repeat_with(|| Vec::<()>::with_capacity(42));
   |         ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

error: aborting due to 3 previous errors