2021-02-24 07:02:51 -06:00
|
|
|
error: `Vec<T>` is already on the heap, the boxing is unnecessary
|
2020-01-23 08:52:41 -06:00
|
|
|
--> $DIR/vec_box_sized.rs:14:21
|
2018-12-13 09:43:13 -06:00
|
|
|
|
|
2019-02-01 01:21:32 -06:00
|
|
|
LL | sized_type: Vec<Box<SizedStruct>>,
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^ 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
|
|
|
|
2021-02-24 07:02:51 -06:00
|
|
|
error: `Vec<T>` is already on the heap, the boxing is unnecessary
|
2020-01-23 08:52:41 -06:00
|
|
|
--> $DIR/vec_box_sized.rs:17:14
|
2019-02-01 01:21:32 -06:00
|
|
|
|
|
|
|
|
LL | struct A(Vec<Box<SizedStruct>>);
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^ help: try: `Vec<SizedStruct>`
|
|
|
|
|
2021-02-24 07:02:51 -06:00
|
|
|
error: `Vec<T>` is already on the heap, the boxing is unnecessary
|
2020-01-23 08:52:41 -06:00
|
|
|
--> $DIR/vec_box_sized.rs:18:18
|
2019-02-01 01:21:32 -06:00
|
|
|
|
|
|
|
|
LL | struct B(Vec<Vec<Box<(u32)>>>);
|
|
|
|
| ^^^^^^^^^^^^^^^ help: try: `Vec<u32>`
|
|
|
|
|
2021-02-24 07:02:51 -06:00
|
|
|
error: `Vec<T>` is already on the heap, the boxing is unnecessary
|
2020-10-30 13:01:34 -05:00
|
|
|
--> $DIR/vec_box_sized.rs:46:23
|
|
|
|
|
|
|
|
|
LL | pub fn f() -> Vec<Box<S>> {
|
|
|
|
| ^^^^^^^^^^^ help: try: `Vec<S>`
|
|
|
|
|
|
|
|
error: aborting due to 4 previous errors
|
2018-12-13 09:43:13 -06:00
|
|
|
|