blob: 0c0071cf9e16fe7754f2d398c6108363365e2974 [file] [log] [blame]
error[E0308]: mismatched types
--> $DIR/variance-use-covariant-struct-1.rs:10:5
|
LL | v
| ^ lifetime mismatch
|
= note: expected struct `SomeStruct<&'max ()>`
found struct `SomeStruct<&'min ()>`
note: the lifetime `'min` as defined here...
--> $DIR/variance-use-covariant-struct-1.rs:6:8
|
LL | fn foo<'min,'max>(v: SomeStruct<&'min ()>)
| ^^^^
note: ...does not necessarily outlive the lifetime `'max` as defined here
--> $DIR/variance-use-covariant-struct-1.rs:6:13
|
LL | fn foo<'min,'max>(v: SomeStruct<&'min ()>)
| ^^^^
error: aborting due to previous error
For more information about this error, try `rustc --explain E0308`.