2014-01-22 19:03:02 +00:00
|
|
|
// Test that a type which is contravariant with respect to its region
|
|
|
|
// parameter yields an error when used in a covariant way.
|
|
|
|
//
|
|
|
|
// Note: see variance-regions-*.rs for the tests that check that the
|
|
|
|
// variance inference works in the first place.
|
|
|
|
|
2015-01-06 22:33:42 +00:00
|
|
|
use std::marker;
|
2014-01-22 19:03:02 +00:00
|
|
|
|
|
|
|
// This is contravariant with respect to 'a, meaning that
|
|
|
|
// Contravariant<'foo> <: Contravariant<'static> because
|
|
|
|
// 'foo <= 'static
|
|
|
|
struct Contravariant<'a> {
|
2015-02-12 15:29:52 +00:00
|
|
|
marker: marker::PhantomData<&'a()>
|
2014-01-22 19:03:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
fn use_<'short,'long>(c: Contravariant<'short>,
|
2015-01-08 10:54:35 +00:00
|
|
|
s: &'short isize,
|
|
|
|
l: &'long isize,
|
2014-01-22 19:03:02 +00: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 10:56:18 +00:00
|
|
|
let _: Contravariant<'long> = c;
|
2022-04-01 17:13:25 +00:00
|
|
|
//~^ ERROR lifetime may not live long enough
|
2014-01-22 19:03:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {}
|