]> git.lizzy.rs Git - rust.git/blob - src/test/compile-fail/variance-trait-bounds.rs
Rollup merge of #35771 - matthew-piziak:range-inclusive-example-error, r=steveklabnik
[rust.git] / src / test / compile-fail / variance-trait-bounds.rs
1 // Copyright 2014 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 #![feature(rustc_attrs)]
13
14 // Check that bounds on type parameters (other than `Self`) do not
15 // influence variance.
16
17 #[rustc_variance]
18 trait Getter<T> { //~ ERROR [o, o]
19     fn get(&self) -> T;
20 }
21
22 #[rustc_variance]
23 trait Setter<T> { //~ ERROR [o, o]
24     fn get(&self, T);
25 }
26
27 #[rustc_variance]
28 struct TestStruct<U,T:Setter<U>> { //~ ERROR [+, +]
29     t: T, u: U
30 }
31
32 #[rustc_variance]
33 enum TestEnum<U,T:Setter<U>> {//~ ERROR [*, +]
34     //~^ ERROR parameter `U` is never used
35     Foo(T)
36 }
37
38 #[rustc_variance]
39 trait TestTrait<U,T:Setter<U>> { //~ ERROR [o, o, o]
40     fn getter(&self, u: U) -> T;
41 }
42
43 #[rustc_variance]
44 trait TestTrait2<U> : Getter<U> { //~ ERROR [o, o]
45 }
46
47 #[rustc_variance]
48 trait TestTrait3<U> { //~ ERROR [o, o]
49     fn getter<T:Getter<U>>(&self);
50 }
51
52 #[rustc_variance]
53 struct TestContraStruct<U,T:Setter<U>> { //~ ERROR [*, +]
54     //~^ ERROR parameter `U` is never used
55     t: T
56 }
57
58 #[rustc_variance]
59 struct TestBox<U,T:Getter<U>+Setter<U>> { //~ ERROR [*, +]
60     //~^ ERROR parameter `U` is never used
61     t: T
62 }
63
64 pub fn main() { }