blob: f6265980af7dad0e5911b327a726627f4d676b25 [file] [log] [blame]
error: lifetime may not live long enough
--> $DIR/variance-invariant-arg-object.rs:11:5
|
LL | fn get_min_from_max<'min, 'max>(v: Box<dyn Get<&'max i32>>)
| ---- ---- lifetime `'max` defined here
| |
| lifetime `'min` defined here
...
LL | v
| ^ returning this value requires that `'min` must outlive `'max`
|
= help: consider adding the following bound: `'min: 'max`
error: lifetime may not live long enough
--> $DIR/variance-invariant-arg-object.rs:18:5
|
LL | fn get_max_from_min<'min, 'max, G>(v: Box<dyn Get<&'min i32>>)
| ---- ---- lifetime `'max` defined here
| |
| lifetime `'min` defined here
...
LL | v
| ^ returning this value requires that `'min` must outlive `'max`
|
= help: consider adding the following bound: `'min: 'max`
error: aborting due to 2 previous errors