2018-12-13 12:15:56 -06:00
|
|
|
error: `Vec<T>` is already on the heap, the boxing is unnecessary.
|
2018-12-27 09:17:45 -06:00
|
|
|
--> $DIR/vec_box_sized.rs:10:17
|
2018-12-13 09:43:13 -06:00
|
|
|
|
|
2018-12-27 09:57:55 -06:00
|
|
|
LL | sized_type: Vec<Box<SizedStruct>>,
|
2018-12-13 11:34:16 -06:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^ help: try: `Vec<SizedStruct>`
|
2018-12-13 09:43:13 -06:00
|
|
|
|
|
2018-12-13 12:15:56 -06:00
|
|
|
= note: `-D clippy::vec-box` implied by `-D warnings`
|
2018-12-13 09:43:13 -06:00
|
|
|
|
|
|
|
error: aborting due to previous error
|
|
|
|
|