2021-02-24 13:02:51 +00:00
|
|
|
error: `Vec<T>` is already on the heap, the boxing is unnecessary
|
2021-03-19 09:14:48 +00:00
|
|
|
--> $DIR/vec_box_sized.rs:12:14
|
2018-12-13 15:43:13 +00:00
|
|
|
|
|
2021-03-19 09:14:48 +00:00
|
|
|
LL | const C: Vec<Box<i32>> = Vec::new();
|
|
|
|
| ^^^^^^^^^^^^^ help: try: `Vec<i32>`
|
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
|
|
|
|
2021-02-24 13:02:51 +00:00
|
|
|
error: `Vec<T>` is already on the heap, the boxing is unnecessary
|
2021-03-19 09:14:48 +00:00
|
|
|
--> $DIR/vec_box_sized.rs:13:15
|
|
|
|
|
|
|
|
|
LL | static S: Vec<Box<i32>> = Vec::new();
|
|
|
|
| ^^^^^^^^^^^^^ help: try: `Vec<i32>`
|
|
|
|
|
|
|
|
error: `Vec<T>` is already on the heap, the boxing is unnecessary
|
|
|
|
--> $DIR/vec_box_sized.rs:16:21
|
|
|
|
|
|
|
|
|
LL | sized_type: Vec<Box<SizedStruct>>,
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^ help: try: `Vec<SizedStruct>`
|
|
|
|
|
|
|
|
error: `Vec<T>` is already on the heap, the boxing is unnecessary
|
|
|
|
--> $DIR/vec_box_sized.rs:19:14
|
2019-02-01 07:21:32 +00:00
|
|
|
|
|
|
|
|
LL | struct A(Vec<Box<SizedStruct>>);
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^ help: try: `Vec<SizedStruct>`
|
|
|
|
|
2021-02-24 13:02:51 +00:00
|
|
|
error: `Vec<T>` is already on the heap, the boxing is unnecessary
|
2021-03-19 09:14:48 +00:00
|
|
|
--> $DIR/vec_box_sized.rs:20:18
|
2019-02-01 07:21:32 +00:00
|
|
|
|
|
|
|
|
LL | struct B(Vec<Vec<Box<(u32)>>>);
|
|
|
|
| ^^^^^^^^^^^^^^^ help: try: `Vec<u32>`
|
|
|
|
|
2021-02-24 13:02:51 +00:00
|
|
|
error: `Vec<T>` is already on the heap, the boxing is unnecessary
|
2021-03-19 09:14:48 +00:00
|
|
|
--> $DIR/vec_box_sized.rs:48:23
|
2020-10-30 18:01:34 +00:00
|
|
|
|
|
|
|
|
LL | pub fn f() -> Vec<Box<S>> {
|
|
|
|
| ^^^^^^^^^^^ help: try: `Vec<S>`
|
|
|
|
|
2021-03-19 09:14:48 +00:00
|
|
|
error: aborting due to 6 previous errors
|
2018-12-13 15:43:13 +00:00
|
|
|
|