]> git.proxmox.com Git - rustc.git/blob - src/test/ui/impl-trait/type_parameters_captured.stderr
New upstream version 1.63.0+dfsg1
[rustc.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:8:5
3 |
4 LL | x
5 | ^ ...so that the type `T` will meet its required lifetime bounds
6 |
7 help: consider adding an explicit lifetime bound...
8 |
9 LL | fn foo<T: 'static>(x: T) -> impl Any + 'static {
10 | +++++++++
11
12 error: aborting due to previous error
13
14 For more information about this error, try `rustc --explain E0310`.