2018-08-30 07:18:55 -05:00
|
|
|
// run-pass
|
2018-09-25 16:51:35 -05:00
|
|
|
#![allow(dead_code)]
|
2013-10-29 05:08:34 -05:00
|
|
|
// Test that a type which is covariant with respect to its region
|
|
|
|
// parameter is successful when used in a covariant way.
|
|
|
|
//
|
2020-12-28 11:15:16 -06:00
|
|
|
// Note: see ui/variance/variance-regions-*.rs for the tests that
|
2013-10-29 05:08:34 -05:00
|
|
|
// check that the variance inference works in the first place.
|
|
|
|
|
|
|
|
// This is covariant with respect to 'a, meaning that
|
|
|
|
// Covariant<'foo> <: Covariant<'static> because
|
|
|
|
// 'foo <= 'static
|
2015-03-22 15:13:15 -05:00
|
|
|
// pretty-expanded FIXME #23616
|
|
|
|
|
2013-10-29 05:08:34 -05:00
|
|
|
struct Covariant<'a> {
|
2015-03-25 19:06:52 -05:00
|
|
|
f: extern "Rust" fn(&'a isize)
|
2013-10-29 05:08:34 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
fn use_<'a>(c: Covariant<'a>) {
|
|
|
|
// OK Because Covariant<'a> <: Covariant<'static> iff 'a <= 'static
|
|
|
|
let _: Covariant<'static> = c;
|
|
|
|
}
|
|
|
|
|
2013-11-09 08:13:58 -06:00
|
|
|
pub fn main() {}
|