]> git.proxmox.com Git - rustc.git/blobdiff - src/test/ui/nll/ty-outlives/impl-trait-outlives.stderr
New upstream version 1.62.1+dfsg1
[rustc.git] / src / test / ui / nll / ty-outlives / impl-trait-outlives.stderr
index 31ee540cce9f70ccf63bcd4f9baed4e8f5276ae7..64b08a9b32fb31be779fe6e03bdd398eb525cbd6 100644 (file)
@@ -2,17 +2,23 @@ error[E0309]: the parameter type `T` may not live long enough
   --> $DIR/impl-trait-outlives.rs:11:5
    |
 LL |     x
-   |     ^
+   |     ^ ...so that the type `T` will meet its required lifetime bounds
    |
-   = help: consider adding an explicit lifetime bound `T: 'a`...
+help: consider adding an explicit lifetime bound...
+   |
+LL |     T: Debug + 'a,
+   |              ++++
 
 error[E0309]: the parameter type `T` may not live long enough
   --> $DIR/impl-trait-outlives.rs:26:5
    |
 LL |     x
-   |     ^
+   |     ^ ...so that the type `T` will meet its required lifetime bounds
+   |
+help: consider adding an explicit lifetime bound...
    |
-   = help: consider adding an explicit lifetime bound `T: 'a`...
+LL |     T: 'b + Debug + 'a,
+   |                   ++++
 
 error: aborting due to 2 previous errors