blob: 8b6d6100af48e8a046e82edadc51ab1d36c60cd1 [file] [log] [blame]
warning: not reporting region error due to nll
--> $DIR/variance-use-invariant-struct-1.rs:22:5
|
LL | v //~ ERROR mismatched types
| ^
warning: not reporting region error due to nll
--> $DIR/variance-use-invariant-struct-1.rs:29:5
|
LL | v //~ ERROR mismatched types
| ^
error: unsatisfied lifetime constraints
--> $DIR/variance-use-invariant-struct-1.rs:22:5
|
LL | fn foo<'min,'max>(v: SomeStruct<&'max ()>)
| ---- ---- 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-use-invariant-struct-1.rs:29:5
|
LL | fn bar<'min,'max>(v: SomeStruct<&'min ()>)
| ---- ---- 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