]> git.proxmox.com Git - rustc.git/blobdiff - src/test/ui/lifetime-errors/ex3-both-anon-regions-both-are-structs-latebound-regions.stderr
New upstream version 1.26.0+dfsg1
[rustc.git] / src / test / ui / lifetime-errors / ex3-both-anon-regions-both-are-structs-latebound-regions.stderr
index 36885b7e076e4ee661c82c8ca25437c63e474b7b..f9530c436a0a904cf6b64e11676f9039023f5681 100644 (file)
@@ -1,10 +1,11 @@
 error[E0623]: lifetime mismatch
   --> $DIR/ex3-both-anon-regions-both-are-structs-latebound-regions.rs:15:12
    |
-14 | fn foo<'a, 'b>(mut x: Vec<Ref<'a>>, y: Ref<'b>) {
+LL | fn foo<'a, 'b>(mut x: Vec<Ref<'a>>, y: Ref<'b>) {
    |                           -------      ------- these two types are declared with different lifetimes...
-15 |     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`.