]> git.proxmox.com Git - rustc.git/blobdiff - src/test/ui/lifetime-errors/ex3-both-anon-regions.stderr
New upstream version 1.26.0+dfsg1
[rustc.git] / src / test / ui / lifetime-errors / ex3-both-anon-regions.stderr
index 2a30172c43a18eacbd9bc66ea726395dd02fdee4..57187a47239c226da1d0d036c13f68075b9814e4 100644 (file)
@@ -1,10 +1,11 @@
 error[E0623]: lifetime mismatch
   --> $DIR/ex3-both-anon-regions.rs:12:12
    |
-11 | fn foo(x: &mut Vec<&u8>, y: &u8) {
+LL | fn foo(x: &mut Vec<&u8>, y: &u8) {
    |                    ---      --- these two types are declared with different lifetimes...
-12 |     x.push(y); //~ ERROR lifetime mismatch
+LL |     x.push(y); //~ ERROR lifetime mismatch
    |            ^ ...but data from `y` flows into `x` here
 
 error: aborting due to previous error
 
+For more information about this error, try `rustc --explain E0623`.