rust/src/test/run-pass/private-method.rs

26 lines
351 B
Rust
Raw Normal View History

2012-08-16 01:46:55 +00:00
struct cat {
priv {
2012-09-07 02:40:15 +00:00
mut meows : uint,
2012-06-30 23:19:07 +00:00
fn nap() { for uint::range(1u, 10u) |_i| { }}
}
2012-09-07 02:40:15 +00:00
how_hungry : int,
fn play() {
self.meows += 1u;
self.nap();
}
2012-09-05 22:58:43 +00:00
}
fn cat(in_x : uint, in_y : int) -> cat {
cat {
meows: in_x,
how_hungry: in_y
}
}
fn main() {
let nyan : cat = cat(52u, 99);
nyan.play();
}