rust/src/test/auxiliary/cci_class.rs
2012-09-06 10:52:26 -07:00

20 lines
229 B
Rust

mod kitties {
struct cat {
priv {
let mut meows : uint;
}
let how_hungry : int;
}
fn cat(in_x : uint, in_y : int) -> cat {
cat {
meows: in_x,
how_hungry: in_y
}
}
}