]> git.lizzy.rs Git - rust.git/blob - src/test/run-pass/class-separate-impl.rs
Rollup merge of #53110 - Xanewok:save-analysis-remap-path, r=nrc
[rust.git] / src / test / run-pass / class-separate-impl.rs
1 // Copyright 2012-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 use std::fmt;
14
15 struct cat {
16     meows : usize,
17
18     how_hungry : isize,
19     name : String,
20 }
21
22 impl cat {
23     pub fn speak(&mut self) { self.meow(); }
24
25     pub fn eat(&mut self) -> bool {
26         if self.how_hungry > 0 {
27             println!("OM NOM NOM");
28             self.how_hungry -= 2;
29             return true;
30         }
31         else {
32             println!("Not hungry!");
33             return false;
34         }
35     }
36 }
37
38 impl cat {
39     fn meow(&mut self) {
40         println!("Meow");
41         self.meows += 1;
42         if self.meows % 5 == 0 {
43             self.how_hungry += 1;
44         }
45     }
46 }
47
48 fn cat(in_x : usize, in_y : isize, in_name: String) -> cat {
49     cat {
50         meows: in_x,
51         how_hungry: in_y,
52         name: in_name
53     }
54 }
55
56 impl fmt::Display for cat {
57     fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
58         write!(f, "{}", self.name)
59     }
60 }
61
62 fn print_out(thing: Box<ToString>, expected: String) {
63   let actual = (*thing).to_string();
64   println!("{}", actual);
65   assert_eq!(actual.to_string(), expected);
66 }
67
68 pub fn main() {
69   let nyan: Box<ToString> = box cat(0, 2, "nyan".to_string()) as Box<ToString>;
70   print_out(nyan, "nyan".to_string());
71 }