mirror of
https://github.com/rust-lang/rust
synced 2024-11-05 20:45:15 +00:00
16 lines
257 B
Rust
16 lines
257 B
Rust
struct Cat {
|
|
meows : usize,
|
|
how_hungry : isize,
|
|
}
|
|
|
|
fn cat(in_x : usize, in_y : isize) -> Cat {
|
|
Cat {
|
|
meows: in_x,
|
|
how_hungry: in_y
|
|
}
|
|
}
|
|
|
|
fn main() {
|
|
let nyan : Cat = cat(52, 99);
|
|
nyan.how_hungry = 0; //~ ERROR cannot assign
|
|
}
|