]> git.lizzy.rs Git - rust.git/blob - src/test/run-pass/variance-trait-matching.rs
Auto merge of #22541 - Manishearth:rollup, r=Gankro
[rust.git] / src / test / run-pass / variance-trait-matching.rs
1 // Copyright 2015 The Rust Project Developers. See the COPYRIGHT
2 // file at the top-level directory of this distribution and at
3 // http://rust-lang.org/COPYRIGHT.
4 //
5 // Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6 // http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7 // <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8 // option. This file may not be copied, modified, or distributed
9 // except according to those terms.
10
11 #![allow(dead_code)]
12
13 // Get<T> is covariant in T
14 trait Get<T> {
15     fn get(&self) -> T;
16 }
17
18 struct Cloner<T:Clone> {
19     t: T
20 }
21
22 impl<T:Clone> Get<T> for Cloner<T> {
23     fn get(&self) -> T {
24         self.t.clone()
25     }
26 }
27
28 fn get<'a, G>(get: &G) -> i32
29     where G : Get<&'a i32>
30 {
31     // This call only type checks if we can use `G : Get<&'a i32>` as
32     // evidence that `G : Get<&'b i32>` where `'a : 'b`.
33     pick(get, &22)
34 }
35
36 fn pick<'b, G>(get: &'b G, if_odd: &'b i32) -> i32
37     where G : Get<&'b i32>
38 {
39     let v = *get.get();
40     if v % 2 != 0 { v } else { *if_odd }
41 }
42
43 fn main() {
44     let x = Cloner { t: &23 };
45     let y = get(&x);
46     assert_eq!(y, 23);
47 }
48
49