2013-11-08 14:52:36 -06:00
|
|
|
// Test that a type which is covariant with respect to its region
|
|
|
|
// parameter yields an error when used in a contravariant way.
|
|
|
|
//
|
|
|
|
// Note: see variance-regions-*.rs for the tests that check that the
|
|
|
|
// variance inference works in the first place.
|
|
|
|
|
2013-11-08 15:19:28 -06:00
|
|
|
// This is contravariant with respect to 'a, meaning that
|
2014-02-10 05:26:09 -06:00
|
|
|
// Contravariant<'long> <: Contravariant<'short> iff
|
|
|
|
// 'short <= 'long
|
2013-11-08 14:52:36 -06:00
|
|
|
struct Contravariant<'a> {
|
2015-01-08 04:54:35 -06:00
|
|
|
f: &'a isize
|
2013-11-08 14:52:36 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
fn use_<'short,'long>(c: Contravariant<'short>,
|
2015-01-08 04:54:35 -06:00
|
|
|
s: &'short isize,
|
|
|
|
l: &'long isize,
|
2013-11-08 14:52:36 -06:00
|
|
|
_where:Option<&'short &'long ()>) {
|
|
|
|
|
|
|
|
// Test whether Contravariant<'short> <: Contravariant<'long>. Since
|
|
|
|
// 'short <= 'long, this would be true if the Contravariant type were
|
|
|
|
// covariant with respect to its parameter 'a.
|
|
|
|
|
2022-04-19 05:56:18 -05:00
|
|
|
let _: Contravariant<'long> = c;
|
2022-04-01 12:13:25 -05:00
|
|
|
//~^ ERROR lifetime may not live long enough
|
2013-11-08 14:52:36 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {}
|