]> git.lizzy.rs Git - rust.git/blobdiff - tests/ui/escape_analysis.stderr
Auto merge of #3603 - xfix:random-state-lint, r=phansch
[rust.git] / tests / ui / escape_analysis.stderr
index ec9b7317eedf98e0757118850fddb2e7f92c62d0..ed7819ed429ac114522e6f15c23b2e84bb87c857 100644 (file)
@@ -1,16 +1,16 @@
 error: local variable doesn't need to be boxed here
   --> $DIR/escape_analysis.rs:43:13
    |
-43 | fn warn_arg(x: Box<A>) {
+LL | fn warn_arg(x: Box<A>) {
    |             ^
    |
    = note: `-D clippy::boxed-local` implied by `-D warnings`
 
 error: local variable doesn't need to be boxed here
-   --> $DIR/escape_analysis.rs:134:12
-    |
-134 | pub fn new(_needs_name: Box<PeekableSeekable<&()>>) -> () {}
-    |            ^^^^^^^^^^^
+  --> $DIR/escape_analysis.rs:134:12
+   |
+LL | pub fn new(_needs_name: Box<PeekableSeekable<&()>>) -> () {}
+   |            ^^^^^^^^^^^
 
 error: aborting due to 2 previous errors