]> git.lizzy.rs Git - rust.git/blob - tests/ui/vec_box_sized.stderr
iterate List by value
[rust.git] / tests / ui / vec_box_sized.stderr
1 error: `Vec<T>` is already on the heap, the boxing is unnecessary.
2   --> $DIR/vec_box_sized.rs:14:21
3    |
4 LL |         sized_type: Vec<Box<SizedStruct>>,
5    |                     ^^^^^^^^^^^^^^^^^^^^^ help: try: `Vec<SizedStruct>`
6    |
7    = note: `-D clippy::vec-box` implied by `-D warnings`
8
9 error: `Vec<T>` is already on the heap, the boxing is unnecessary.
10   --> $DIR/vec_box_sized.rs:17:14
11    |
12 LL |     struct A(Vec<Box<SizedStruct>>);
13    |              ^^^^^^^^^^^^^^^^^^^^^ help: try: `Vec<SizedStruct>`
14
15 error: `Vec<T>` is already on the heap, the boxing is unnecessary.
16   --> $DIR/vec_box_sized.rs:18:18
17    |
18 LL |     struct B(Vec<Vec<Box<(u32)>>>);
19    |                  ^^^^^^^^^^^^^^^ help: try: `Vec<u32>`
20
21 error: aborting due to 3 previous errors
22