2021-03-12 08:30:50 -06:00
|
|
|
error: `Vec<T>` is already on the heap, the boxing is unnecessary
|
2024-02-17 06:16:29 -06:00
|
|
|
--> tests/ui-toml/vec_box_sized/test.rs:9:12
|
2020-01-23 08:52:41 -06:00
|
|
|
|
|
|
|
|
LL | struct Foo(Vec<Box<u8>>);
|
|
|
|
| ^^^^^^^^^^^^ help: try: `Vec<u8>`
|
|
|
|
|
|
|
|
|
= note: `-D clippy::vec-box` implied by `-D warnings`
|
2023-08-01 07:02:21 -05:00
|
|
|
= help: to override `-D warnings` add `#[allow(clippy::vec_box)]`
|
2020-01-23 08:52:41 -06:00
|
|
|
|
2021-03-12 08:30:50 -06:00
|
|
|
error: `Vec<T>` is already on the heap, the boxing is unnecessary
|
2024-02-17 06:16:29 -06:00
|
|
|
--> tests/ui-toml/vec_box_sized/test.rs:10:12
|
2020-01-23 08:52:41 -06:00
|
|
|
|
|
2022-11-21 13:34:47 -06:00
|
|
|
LL | struct Bar(Vec<Box<u16>>);
|
|
|
|
| ^^^^^^^^^^^^^ help: try: `Vec<u16>`
|
2020-01-23 08:52:41 -06:00
|
|
|
|
2021-03-12 08:30:50 -06:00
|
|
|
error: `Vec<T>` is already on the heap, the boxing is unnecessary
|
2024-02-17 06:16:29 -06:00
|
|
|
--> tests/ui-toml/vec_box_sized/test.rs:14:18
|
2020-01-23 08:52:41 -06:00
|
|
|
|
|
|
|
|
LL | struct FooBarBaz(Vec<Box<C>>);
|
|
|
|
| ^^^^^^^^^^^ help: try: `Vec<C>`
|
|
|
|
|
|
|
|
error: aborting due to 3 previous errors
|
|
|
|
|