]> git.lizzy.rs Git - rust.git/blobdiff - tests/ui/box_vec.stderr
Auto merge of #4478 - tsurai:master, r=flip1995
[rust.git] / tests / ui / box_vec.stderr
index 254d07713862eb9515164423889bfbc775552e1b..fca12eddd573f04c1721bf2143d235ad2e3a06aa 100644 (file)
@@ -1,10 +1,10 @@
 error: you seem to be trying to use `Box<Vec<T>>`. Consider using just `Vec<T>`
-  --> $DIR/box_vec.rs:17:18
+  --> $DIR/box_vec.rs:14:18
    |
-17 | pub fn test(foo: Box<Vec<bool>>) {
+LL | pub fn test(foo: Box<Vec<bool>>) {
    |                  ^^^^^^^^^^^^^^
    |
-   = note: `-D box-vec` implied by `-D warnings`
+   = note: `-D clippy::box-vec` implied by `-D warnings`
    = help: `Vec<T>` is already on the heap, `Box<Vec<T>>` makes an extra allocation.
 
 error: aborting due to previous error