]> git.lizzy.rs Git - rust.git/blob - src/test/run-pass/issue-13323.rs
doc: remove incomplete sentence
[rust.git] / src / test / run-pass / issue-13323.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 struct StrWrap {
12     s: String
13 }
14
15 impl StrWrap {
16     fn new(s: &str) -> StrWrap {
17         StrWrap { s: s.into_string() }
18     }
19
20     fn get_s<'a>(&'a self) -> &'a str {
21         self.s.as_slice()
22     }
23 }
24
25 struct MyStruct {
26     s: StrWrap
27 }
28
29 impl MyStruct {
30     fn new(s: &str) -> MyStruct {
31         MyStruct { s: StrWrap::new(s) }
32     }
33
34     fn get_str_wrap<'a>(&'a self) -> &'a StrWrap {
35         &self.s
36     }
37 }
38
39 trait Matcher<T> {
40     fn matches(&self, actual: T) -> bool;
41 }
42
43 fn assert_that<T, U: Matcher<T>>(actual: T, matcher: &U) {
44     assert!(matcher.matches(actual));
45 }
46
47 struct EqualTo<T> {
48     expected: T
49 }
50
51 impl<T: Eq> Matcher<T> for EqualTo<T> {
52     fn matches(&self, actual: T) -> bool {
53         self.expected.eq(&actual)
54     }
55 }
56
57 fn equal_to<T: Eq>(expected: T) -> Box<EqualTo<T>> {
58     box EqualTo { expected: expected }
59 }
60
61 pub fn main() {
62     let my_struct = MyStruct::new("zomg");
63     let s = my_struct.get_str_wrap();
64
65     assert_that(s.get_s(), &*equal_to("zomg"));
66 }