rust/tests/ui/vec_box_sized.stderr

11 lines
405 B
Plaintext
Raw Normal View History

2018-12-14 01:34:16 +08:00
error: you seem to be trying to use `Vec<Box<T>>`, but T is Sized. `Vec<T>` is already on the heap, `Vec<Box<T>>` makes an extra allocation.
--> $DIR/vec_box_sized.rs:10:14
|
10 | sized_type: Vec<Box<SizedStruct>>,
2018-12-14 01:34:16 +08:00
| ^^^^^^^^^^^^^^^^^^^^^ help: try: `Vec<SizedStruct>`
|
= note: `-D clippy::vec-box-sized` implied by `-D warnings`
error: aborting due to previous error