]> git.proxmox.com Git - rustc.git/blobdiff - src/test/ui/lifetimes/lifetime-errors/ex3-both-anon-regions-both-are-structs-earlybound-regions.stderr
New upstream version 1.63.0+dfsg1
[rustc.git] / src / test / ui / lifetimes / lifetime-errors / ex3-both-anon-regions-both-are-structs-earlybound-regions.stderr
index 374bbd93d0874c38ef4373f61f4328e28543029b..b3d0bc2b882f9907b21358fac8fb042122d30427 100644 (file)
@@ -1,12 +1,15 @@
-error[E0623]: lifetime mismatch
-  --> $DIR/ex3-both-anon-regions-both-are-structs-earlybound-regions.rs:9:12
+error: lifetime may not live long enough
+  --> $DIR/ex3-both-anon-regions-both-are-structs-earlybound-regions.rs:9:5
    |
 LL | fn foo<'a, 'b>(mut x: Vec<Ref<'a>>, y: Ref<'b>)
-   |                           -------      ------- these two types are declared with different lifetimes...
+   |        --  -- lifetime `'b` defined here
+   |        |
+   |        lifetime `'a` defined here
 ...
 LL |     x.push(y);
-   |            ^ ...but data from `y` flows into `x` here
+   |     ^^^^^^^^^ argument requires that `'b` must outlive `'a`
+   |
+   = help: consider adding the following bound: `'b: 'a`
 
 error: aborting due to previous error
 
-For more information about this error, try `rustc --explain E0623`.