]> git.lizzy.rs Git - rust.git/blobdiff - src/test/ui/issues/issue-13497-2.stderr
Require Drop impls to have the same constness on its bounds as the bounds on the...
[rust.git] / src / test / ui / issues / issue-13497-2.stderr
index 1b78e7ec1c64d3261a31f4194a1079ffa0f703be..6f72b79f2a5e08f3d6d13a0c11c7c3e8d882cc9f 100644 (file)
@@ -1,10 +1,14 @@
 error[E0515]: cannot return value referencing local variable `rawLines`
-  --> $DIR/issue-13497-2.rs:3:29
+  --> $DIR/issue-13497-2.rs:3:5
    |
-LL |     rawLines.iter().map(|l| l.trim()).collect()
-   |     ---------------         ^^^^^^^^ returns a value referencing data owned by the current function
-   |     |
-   |     `rawLines` is borrowed here
+LL |        rawLines
+   |   _____^
+   |  |_____|
+   | ||
+LL | ||         .iter().map(|l| l.trim()).collect()
+   | ||_______________-___________________________^ returns a value referencing data owned by the current function
+   | |________________|
+   |                  `rawLines` is borrowed here
 
 error: aborting due to previous error