mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-24 05:33:27 +00:00
23 lines
787 B
Text
23 lines
787 B
Text
error: `Vec<T>` is already on the heap, the boxing is unnecessary
|
|
--> tests/ui-toml/vec_box_sized/test.rs:9:12
|
|
|
|
|
LL | struct Foo(Vec<Box<u8>>);
|
|
| ^^^^^^^^^^^^ help: try: `Vec<u8>`
|
|
|
|
|
= note: `-D clippy::vec-box` implied by `-D warnings`
|
|
= help: to override `-D warnings` add `#[allow(clippy::vec_box)]`
|
|
|
|
error: `Vec<T>` is already on the heap, the boxing is unnecessary
|
|
--> tests/ui-toml/vec_box_sized/test.rs:10:12
|
|
|
|
|
LL | struct Bar(Vec<Box<u16>>);
|
|
| ^^^^^^^^^^^^^ help: try: `Vec<u16>`
|
|
|
|
error: `Vec<T>` is already on the heap, the boxing is unnecessary
|
|
--> tests/ui-toml/vec_box_sized/test.rs:14:18
|
|
|
|
|
LL | struct FooBarBaz(Vec<Box<C>>);
|
|
| ^^^^^^^^^^^ help: try: `Vec<C>`
|
|
|
|
error: aborting due to 3 previous errors
|
|
|