]> git.lizzy.rs Git - rust.git/blob - src/test/ui/impl-trait/type_parameters_captured.stderr
Rollup merge of #95504 - jyn514:library-alias, r=Mark-Simulacrum
[rust.git] / src / test / ui / impl-trait / type_parameters_captured.stderr
1 error[E0310]: the parameter type `T` may not live long enough
2   --> $DIR/type_parameters_captured.rs:7:20
3    |
4 LL | fn foo<T>(x: T) -> impl Any + 'static {
5    |        -           ^^^^^^^^^^^^^^^^^^ ...so that the type `T` will meet its required lifetime bounds
6    |        |
7    |        help: consider adding an explicit lifetime bound...: `T: 'static`
8
9 error[E0310]: the parameter type `T` may not live long enough
10   --> $DIR/type_parameters_captured.rs:7:39
11    |
12 LL |   fn foo<T>(x: T) -> impl Any + 'static {
13    |  ________-______________________________^
14    | |        |
15    | |        help: consider adding an explicit lifetime bound...: `T: 'static`
16 LL | |
17 LL | |
18 LL | |     x
19 LL | | }
20    | |_^ ...so that the type `T` will meet its required lifetime bounds
21
22 error: aborting due to 2 previous errors
23
24 For more information about this error, try `rustc --explain E0310`.