]> git.lizzy.rs Git - rust.git/blob - src/test/run-pass/trait-default-method-xc.rs
Auto merge of #28816 - petrochenkov:unistruct, r=nrc
[rust.git] / src / test / run-pass / trait-default-method-xc.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 // aux-build:trait_default_method_xc_aux.rs
12
13
14 extern crate trait_default_method_xc_aux as aux;
15 use aux::{A, TestEquality, Something};
16 use aux::B;
17
18 fn f<T: aux::A>(i: T) {
19     assert_eq!(i.g(), 10);
20 }
21
22 fn welp<T>(i: isize, _x: &T) -> isize {
23     i.g()
24 }
25
26 mod stuff {
27     pub struct thing { pub x: isize }
28 }
29
30 impl A for stuff::thing {
31     fn f(&self) -> isize { 10 }
32 }
33
34 fn g<T, U, V: B<T>>(i: V, j: T, k: U) -> (T, U) {
35     i.thing(j, k)
36 }
37
38 fn eq<T: TestEquality>(lhs: &T, rhs: &T) -> bool {
39     lhs.test_eq(rhs)
40 }
41 fn neq<T: TestEquality>(lhs: &T, rhs: &T) -> bool {
42     lhs.test_neq(rhs)
43 }
44
45
46 impl TestEquality for stuff::thing {
47     fn test_eq(&self, rhs: &stuff::thing) -> bool {
48         //self.x.test_eq(&rhs.x)
49         eq(&self.x, &rhs.x)
50     }
51 }
52
53
54 pub fn main() {
55     // Some tests of random things
56     f(0);
57
58     assert_eq!(A::lurr(&0, &1), 21);
59
60     let a = stuff::thing { x: 0 };
61     let b = stuff::thing { x: 1 };
62     let c = Something { x: 1 };
63
64     assert_eq!(0.g(), 10);
65     assert_eq!(a.g(), 10);
66     assert_eq!(a.h(), 11);
67     assert_eq!(c.h(), 11);
68
69     assert_eq!(0.thing(3.14f64, 1), (3.14f64, 1));
70     assert_eq!(B::staticthing(&0, 3.14f64, 1), (3.14f64, 1));
71     assert_eq!(B::<f64>::staticthing::<isize>(&0, 3.14, 1), (3.14, 1));
72
73     assert_eq!(g(0, 3.14f64, 1), (3.14f64, 1));
74     assert_eq!(g(false, 3.14f64, 1), (3.14, 1));
75
76
77     // Trying out a real one
78     assert!(12.test_neq(&10));
79     assert!(!10.test_neq(&10));
80     assert!(a.test_neq(&b));
81     assert!(!a.test_neq(&a));
82
83     assert!(neq(&12, &10));
84     assert!(!neq(&10, &10));
85     assert!(neq(&a, &b));
86     assert!(!neq(&a, &a));
87 }