error: unsatisfied lifetime constraints --> $DIR/variance-covariant-arg-object.rs:25:5 | LL | fn get_min_from_max<'min, 'max>(v: Box>) | ---- ---- lifetime `'max` defined here | | | lifetime `'min` defined here ... LL | v //~ ERROR mismatched types | ^ returning this value requires that `'min` must outlive `'max` error: unsatisfied lifetime constraints --> $DIR/variance-covariant-arg-object.rs:32:5 | LL | fn get_max_from_min<'min, 'max, G>(v: Box>) | ---- ---- lifetime `'max` defined here | | | lifetime `'min` defined here ... LL | v //~ ERROR mismatched types | ^ returning this value requires that `'min` must outlive `'max` error: aborting due to 2 previous errors