]> 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 7f4bdfb5aed95a1ca477fa42bd2d376a60ea8ef7..21b515fa48674782416470dc8e6805ea5694b5b6 100644 (file)
@@ -1,7 +1,7 @@
 error: `Vec<T>` is already on the heap, the boxing is unnecessary.
-  --> $DIR/vec_box_sized.rs:10:14
+  --> $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` implied by `-D warnings`