rust/src/test/compile-fail/private-method.rs
2012-09-06 10:52:26 -07:00

23 lines
350 B
Rust

// error-pattern:call to private method not allowed
struct cat {
priv {
let mut meows : uint;
fn nap() { uint::range(1u, 10000u, |_i|{})}
}
let how_hungry : int;
}
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.nap();
}