2018-12-13 18:15:56 +00:00
|
|
|
error: `Vec<T>` is already on the heap, the boxing is unnecessary.
|
2019-02-01 07:21:32 +00:00
|
|
|
--> $DIR/vec_box_sized.rs:13:21
|
2018-12-13 15:43:13 +00:00
|
|
|
|
|
2019-02-01 07:21:32 +00:00
|
|
|
LL | sized_type: Vec<Box<SizedStruct>>,
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^ help: try: `Vec<SizedStruct>`
|
2018-12-13 15:43:13 +00:00
|
|
|
|
|
2018-12-13 18:15:56 +00:00
|
|
|
= note: `-D clippy::vec-box` implied by `-D warnings`
|
2018-12-13 15:43:13 +00:00
|
|
|
|
2019-02-01 07:21:32 +00:00
|
|
|
error: `Vec<T>` is already on the heap, the boxing is unnecessary.
|
|
|
|
--> $DIR/vec_box_sized.rs:16:14
|
|
|
|
|
|
|
|
|
LL | struct A(Vec<Box<SizedStruct>>);
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^ help: try: `Vec<SizedStruct>`
|
|
|
|
|
|
|
|
error: `Vec<T>` is already on the heap, the boxing is unnecessary.
|
|
|
|
--> $DIR/vec_box_sized.rs:17:18
|
|
|
|
|
|
|
|
|
LL | struct B(Vec<Vec<Box<(u32)>>>);
|
|
|
|
| ^^^^^^^^^^^^^^^ help: try: `Vec<u32>`
|
|
|
|
|
|
|
|
error: aborting due to 3 previous errors
|
2018-12-13 15:43:13 +00:00
|
|
|
|