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