2018-07-26 20:25:27 -04:00
|
|
|
error[E0310]: the parameter type `U` may not live long enough
|
2020-07-10 15:13:49 -07:00
|
|
|
--> $DIR/dont-infer-static.rs:8:10
|
2018-07-26 20:25:27 -04:00
|
|
|
|
|
|
|
|
LL | struct Foo<U> {
|
2020-02-19 18:04:03 -08:00
|
|
|
| - help: consider adding an explicit lifetime bound...: `U: 'static`
|
2019-03-09 15:03:44 +03:00
|
|
|
LL | bar: Bar<U>
|
2020-07-10 15:13:49 -07:00
|
|
|
| ^^^^^^ ...so that the type `U` will meet its required lifetime bounds
|
2018-07-26 20:25:27 -04:00
|
|
|
|
|
|
|
error: aborting due to previous error
|
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0310`.
|