2018-12-13 18:34:16 +01:00
|
|
|
error: you seem to be trying to use `Vec<Box<T>>`, but T is Sized. `Vec<T>` is already on the heap, `Vec<Box<T>>` makes an extra allocation.
|
2018-12-13 16:43:13 +01:00
|
|
|
--> $DIR/vec_box_sized.rs:10:14
|
|
|
|
|
|
|
|
|
10 | sized_type: Vec<Box<SizedStruct>>,
|
2018-12-13 18:34:16 +01:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^ help: try: `Vec<SizedStruct>`
|
2018-12-13 16:43:13 +01:00
|
|
|
|
|
|
|
|
= note: `-D clippy::vec-box-sized` implied by `-D warnings`
|
|
|
|
|
|
|
|
error: aborting due to previous error
|
|
|
|
|