2018-08-30 07:18:55 -05:00
|
|
|
// run-pass
|
2018-09-25 16:51:35 -05:00
|
|
|
#![allow(dead_code)]
|
|
|
|
#![allow(unused_variables)]
|
2013-10-29 05:08:34 -05:00
|
|
|
// Test that a type which is contravariant with respect to its region
|
|
|
|
// parameter compiles successfully when used in a contravariant way.
|
|
|
|
//
|
2020-12-28 11:15:16 -06:00
|
|
|
// Note: see ui/variance/variance-regions-*.rs for the tests that check that the
|
2013-10-29 05:08:34 -05:00
|
|
|
// variance inference works in the first place.
|
|
|
|
|
2015-03-22 15:13:15 -05:00
|
|
|
// pretty-expanded FIXME #23616
|
|
|
|
|
2013-10-29 05:08:34 -05:00
|
|
|
struct Contravariant<'a> {
|
2015-03-25 19:06:52 -05:00
|
|
|
f: &'a isize
|
2013-10-29 05:08:34 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
fn use_<'a>(c: Contravariant<'a>) {
|
|
|
|
let x = 3;
|
|
|
|
|
|
|
|
// 'b winds up being inferred to this call.
|
|
|
|
// Contravariant<'a> <: Contravariant<'call> is true
|
|
|
|
// if 'call <= 'a, which is true, so no error.
|
|
|
|
collapse(&x, c);
|
|
|
|
|
2015-03-25 19:06:52 -05:00
|
|
|
fn collapse<'b>(x: &'b isize, c: Contravariant<'b>) { }
|
2013-10-29 05:08:34 -05:00
|
|
|
}
|
|
|
|
|
2013-11-09 08:13:58 -06:00
|
|
|
pub fn main() {}
|