2019-01-27 05:03:21 -06:00
|
|
|
error: lifetime may not live long enough
|
|
|
|
--> $DIR/variance-use-covariant-struct-1.rs:10:5
|
|
|
|
|
|
|
|
|
LL | fn foo<'min,'max>(v: SomeStruct<&'min ()>)
|
|
|
|
| ---- ---- lifetime `'max` defined here
|
|
|
|
| |
|
|
|
|
| lifetime `'min` defined here
|
|
|
|
...
|
|
|
|
LL | v
|
|
|
|
| ^ returning this value requires that `'min` must outlive `'max`
|
2019-10-27 09:39:14 -05:00
|
|
|
|
|
|
|
|
= help: consider adding the following bound: `'min: 'max`
|
2019-01-27 05:03:21 -06:00
|
|
|
|
|
|
|
error: aborting due to previous error
|
|
|
|
|