]> git.lizzy.rs Git - rust.git/blobdiff - tests/ui/vec_box_sized.stderr
Auto merge of #3603 - xfix:random-state-lint, r=phansch
[rust.git] / tests / ui / vec_box_sized.stderr
index ae7171fdb310d9303f9c583399b58e06842d56ca..21b515fa48674782416470dc8e6805ea5694b5b6 100644 (file)
@@ -1,10 +1,10 @@
-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
+error: `Vec<T>` is already on the heap, the boxing is unnecessary.
+  --> $DIR/vec_box_sized.rs:10:17
    |
-10 |     sized_type: Vec<Box<SizedStruct>>,
+LL |     sized_type: Vec<Box<SizedStruct>>,
    |                 ^^^^^^^^^^^^^^^^^^^^^ help: try: `Vec<SizedStruct>`
    |
-   = note: `-D clippy::vec-box-sized` implied by `-D warnings`
+   = note: `-D clippy::vec-box` implied by `-D warnings`
 
 error: aborting due to previous error