rust/src/test/ui/rfc-2093-infer-outlives/dont-infer-static.stderr

12 lines
422 B
Plaintext
Raw Normal View History

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