2014-01-22 19:03:02 +00: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.
|
|
|
|
|
2015-01-06 22:33:42 +00:00
|
|
|
use std::marker;
|
2014-01-22 19:03:02 +00:00
|
|
|
|
|
|
|
struct Covariant<'a> {
|
2015-02-12 15:29:52 +00:00
|
|
|
marker: marker::PhantomData<fn(&'a ())>
|
2014-01-22 19:03:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
fn use_<'short,'long>(c: Covariant<'long>,
|
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 Covariant<'long> <: Covariant<'short>. Since
|
|
|
|
// 'short <= 'long, this would be true if the Covariant type were
|
|
|
|
// contravariant with respect to its parameter 'a.
|
|
|
|
|
2022-04-19 10:56:18 +00:00
|
|
|
let _: Covariant<'short> = 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() {}
|