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