]> git.lizzy.rs Git - rust.git/blob - src/test/ui/variance/variance-contravariant-arg-object.rs
Merge commit '2ca58e7dda4a9eb142599638c59dc04d15961175' into clippyup
[rust.git] / src / test / ui / variance / variance-contravariant-arg-object.rs
1 #![allow(dead_code)]
2
3 // Test that even when `T` is only used in contravariant position, it
4 // is treated as invariant.
5
6 trait Get<T> : 'static {
7     fn get(&self, t: T);
8 }
9
10 fn get_min_from_max<'min, 'max>(v: Box<dyn Get<&'max i32>>)
11                                 -> Box<dyn Get<&'min i32>>
12     where 'max : 'min
13 {
14     v //~ ERROR mismatched types
15 }
16
17 fn get_max_from_min<'min, 'max, G>(v: Box<dyn Get<&'min i32>>)
18                                    -> Box<dyn Get<&'max i32>>
19     where 'max : 'min
20 {
21     // Previously OK:
22     v //~ ERROR mismatched types
23 }
24
25 fn main() { }