]> 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 25ba413b75a5fb6cb0a49261e4c3ed2a6623dc94..ed7819ed429ac114522e6f15c23b2e84bb87c857 100644 (file)
@@ -1,16 +1,16 @@
 error: local variable doesn't need to be boxed here
-  --> $DIR/escape_analysis.rs:45:13
+  --> $DIR/escape_analysis.rs:43:13
    |
-45 | 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:137:12
-    |
-137 | 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