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