]> git.lizzy.rs Git - rust.git/blob - src/test/compile-fail/coherence-subtyping.rs
Auto merge of #22541 - Manishearth:rollup, r=Gankro
[rust.git] / src / test / compile-fail / 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     //~^ ERROR E0119
20 }
21
22 impl Contravariant for for<'a> fn(&'a u8, &'a u8) {
23 }
24
25 ///////////////////////////////////////////////////////////////////////////
26
27 trait Covariant {
28     fn foo(&self) { }
29 }
30
31 impl Covariant for for<'a,'b> fn(&'a u8, &'b u8) {
32     //~^ ERROR E0119
33 }
34
35 impl Covariant for for<'a> fn(&'a u8, &'a u8) {
36 }
37
38 ///////////////////////////////////////////////////////////////////////////
39
40 trait Invariant {
41     fn foo(&self) -> Self { }
42 }
43
44 impl Invariant for for<'a,'b> fn(&'a u8, &'b u8) {
45 }
46
47 impl Invariant for for<'a> fn(&'a u8, &'a u8) {
48 }
49
50 fn main() { }