rust-clippy/tests/ui/box_vec.stderr

12 lines
369 B
Text
Raw Normal View History

error: you seem to be trying to use `Box<Vec<T>>`. Consider using just `Vec<T>`
2017-08-01 15:54:21 +00:00
--> $DIR/box_vec.rs:17:18
|
2017-02-08 13:58:07 +00:00
17 | pub fn test(foo: Box<Vec<bool>>) {
| ^^^^^^^^^^^^^^
|
= note: `-D box-vec` implied by `-D warnings`
= help: `Vec<T>` is already on the heap, `Box<Vec<T>>` makes an extra allocation.
2018-01-16 16:06:27 +00:00
error: aborting due to previous error