]> 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 039cb62f86656a69f511b6364d7935181de85bde..5328b077993c5ae2056c4c447e222467b492a56d 100644 (file)
@@ -1,10 +1,11 @@
 error[E0310]: the parameter type `T` may not live long enough
-  --> $DIR/type_parameters_captured.rs:7:20
+  --> $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`...
+   |        - help: consider adding an explicit lifetime bound...: `T: 'static`
+...
+LL |     x
+   |     ^ ...so that the type `T` will meet its required lifetime bounds
 
 error: aborting due to previous error