]> git.lizzy.rs Git - rust.git/blobdiff - src/test/ui/impl-trait/type_parameters_captured.nll.stderr
Auto merge of #95604 - nbdd0121:used2, r=petrochenkov
[rust.git] / src / test / ui / impl-trait / type_parameters_captured.nll.stderr
index b1175a5952e592a7a575da8413050c2e18f3d29f..5328b077993c5ae2056c4c447e222467b492a56d 100644 (file)
@@ -1,10 +1,11 @@
 error[E0310]: the parameter type `T` may not live long enough
   --> $DIR/type_parameters_captured.rs:10:5
    |
+LL | fn foo<T>(x: T) -> impl Any + 'static {
+   |        - help: consider adding an explicit lifetime bound...: `T: 'static`
+...
 LL |     x
-   |     ^
-   |
-   = help: consider adding an explicit lifetime bound `T: 'static`...
+   |     ^ ...so that the type `T` will meet its required lifetime bounds
 
 error: aborting due to previous error