2012-04-11 20:48:26 -05:00
|
|
|
// xfail-fast
|
2012-08-02 19:43:12 -05:00
|
|
|
// aux-build:cci_class_trait.rs
|
2012-09-11 19:46:20 -05:00
|
|
|
extern mod cci_class_trait;
|
2012-09-05 14:32:05 -05:00
|
|
|
use cci_class_trait::animals::*;
|
2012-04-11 20:48:26 -05:00
|
|
|
|
2012-09-07 21:04:40 -05:00
|
|
|
struct cat {
|
2012-09-10 20:56:07 -05:00
|
|
|
priv mut meows : uint,
|
2012-04-11 20:48:26 -05:00
|
|
|
|
2012-09-06 21:40:15 -05:00
|
|
|
mut how_hungry : int,
|
|
|
|
name : ~str,
|
2012-09-07 21:04:40 -05:00
|
|
|
}
|
2012-04-11 20:48:26 -05:00
|
|
|
|
2012-09-07 21:04:40 -05:00
|
|
|
impl cat {
|
2012-04-11 20:48:26 -05:00
|
|
|
fn eat() -> bool {
|
|
|
|
if self.how_hungry > 0 {
|
2012-08-22 19:24:52 -05:00
|
|
|
error!("OM NOM NOM");
|
2012-04-11 20:48:26 -05:00
|
|
|
self.how_hungry -= 2;
|
2012-08-01 19:30:05 -05:00
|
|
|
return true;
|
2012-04-11 20:48:26 -05:00
|
|
|
}
|
|
|
|
else {
|
2012-08-22 19:24:52 -05:00
|
|
|
error!("Not hungry!");
|
2012-08-01 19:30:05 -05:00
|
|
|
return false;
|
2012-04-11 20:48:26 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-09-07 21:04:40 -05:00
|
|
|
impl cat : noisy {
|
|
|
|
|
|
|
|
fn speak() { self.meow(); }
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
priv impl cat {
|
|
|
|
fn meow() {
|
|
|
|
error!("Meow");
|
|
|
|
self.meows += 1u;
|
|
|
|
if self.meows % 5u == 0u {
|
|
|
|
self.how_hungry += 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-09-05 17:58:43 -05:00
|
|
|
fn cat(in_x : uint, in_y : int, in_name: ~str) -> cat {
|
|
|
|
cat {
|
|
|
|
meows: in_x,
|
|
|
|
how_hungry: in_y,
|
|
|
|
name: in_name
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-04-11 20:48:26 -05:00
|
|
|
fn main() {
|
2012-07-14 00:57:48 -05:00
|
|
|
let nyan = cat(0u, 2, ~"nyan");
|
2012-04-11 20:48:26 -05:00
|
|
|
nyan.eat();
|
|
|
|
assert(!nyan.eat());
|
2012-06-30 18:19:07 -05:00
|
|
|
for uint::range(1u, 10u) |_i| { nyan.speak(); };
|
2012-04-11 20:48:26 -05:00
|
|
|
assert(nyan.eat());
|
|
|
|
}
|