]> git.proxmox.com Git - rustc.git/blobdiff - src/test/ui/span/range-2.stderr
New upstream version 1.26.0+dfsg1
[rustc.git] / src / test / ui / span / range-2.stderr
index 106a8a7667fb420aecd74d1522c42046df7ae264..e2ee86ae1f5935282621c0060f12348a8ecd9e39 100644 (file)
@@ -1,24 +1,25 @@
 error[E0597]: `a` does not live long enough
   --> $DIR/range-2.rs:17:10
    |
-17 |         &a..&b
+LL |         &a..&b
    |          ^ borrowed value does not live long enough
-18 |     };
+LL |     };
    |     - `a` dropped here while still borrowed
 ...
-21 | }
+LL | }
    | - borrowed value needs to live until here
 
 error[E0597]: `b` does not live long enough
   --> $DIR/range-2.rs:17:14
    |
-17 |         &a..&b
+LL |         &a..&b
    |              ^ borrowed value does not live long enough
-18 |     };
+LL |     };
    |     - `b` dropped here while still borrowed
 ...
-21 | }
+LL | }
    | - borrowed value needs to live until here
 
 error: aborting due to 2 previous errors
 
+For more information about this error, try `rustc --explain E0597`.