mirror of
https://github.com/rust-lang/rust.git
synced 2024-10-31 22:41:50 +00:00
24 lines
392 B
Rust
24 lines
392 B
Rust
mod kitties {
|
|
pub struct Cat {
|
|
meows : usize,
|
|
|
|
how_hungry : isize,
|
|
}
|
|
|
|
impl Cat {
|
|
fn nap(&self) {}
|
|
}
|
|
|
|
pub fn cat(in_x : usize, in_y : isize) -> Cat {
|
|
Cat {
|
|
meows: in_x,
|
|
how_hungry: in_y
|
|
}
|
|
}
|
|
}
|
|
|
|
fn main() {
|
|
let nyan : kitties::Cat = kitties::cat(52, 99);
|
|
nyan.nap(); //~ ERROR method `nap` is private
|
|
}
|