]> git.lizzy.rs Git - rust.git/blob - src/test/run-pass/coherence-subtyping.rs
Auto merge of #28816 - petrochenkov:unistruct, r=nrc
[rust.git] / src / test / run-pass / coherence-subtyping.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 // Test that two distinct impls which match subtypes of one another
12 // yield coherence errors (or not) depending on the variance.
13
14 trait Contravariant {
15     fn foo(&self) { }
16 }
17
18 impl Contravariant for for<'a,'b> fn(&'a u8, &'b u8) {
19 }
20
21 impl Contravariant for for<'a> fn(&'a u8, &'a u8) {
22 }
23
24 ///////////////////////////////////////////////////////////////////////////
25
26 trait Covariant {
27     fn foo(&self) { }
28 }
29
30 impl Covariant for for<'a,'b> fn(&'a u8, &'b u8) {
31 }
32
33 impl Covariant for for<'a> fn(&'a u8, &'a u8) {
34 }
35
36 ///////////////////////////////////////////////////////////////////////////
37
38 trait Invariant {
39     fn foo(&self) { }
40 }
41
42 impl Invariant for for<'a,'b> fn(&'a u8, &'b u8) {
43 }
44
45 impl Invariant for for<'a> fn(&'a u8, &'a u8) {
46 }
47
48 fn main() { }