]> git.proxmox.com Git - rustc.git/blobdiff - src/test/ui/variance/variance-invariant-arg-object.nll.stderr
New upstream version 1.41.1+dfsg1
[rustc.git] / src / test / ui / variance / variance-invariant-arg-object.nll.stderr
index fe2f35b63b57d258e95639297ff6b1d52bdecca6..f6265980af7dad0e5911b327a726627f4d676b25 100644 (file)
@@ -8,6 +8,8 @@ LL | fn get_min_from_max<'min, 'max>(v: Box<dyn Get<&'max i32>>)
 ...
 LL |     v
    |     ^ returning this value requires that `'min` must outlive `'max`
+   |
+   = help: consider adding the following bound: `'min: 'max`
 
 error: lifetime may not live long enough
   --> $DIR/variance-invariant-arg-object.rs:18:5
@@ -19,6 +21,8 @@ LL | fn get_max_from_min<'min, 'max, G>(v: Box<dyn Get<&'min i32>>)
 ...
 LL |     v
    |     ^ returning this value requires that `'min` must outlive `'max`
+   |
+   = help: consider adding the following bound: `'min: 'max`
 
 error: aborting due to 2 previous errors