rust/tests/ui/structs-enums/classes-simple.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

24 lines
383 B
Rust
Raw Normal View History

// run-pass
#![allow(dead_code)]
#![allow(non_camel_case_types)]
2012-08-15 20:46:55 -05:00
struct cat {
meows : usize,
how_hungry : isize,
2012-09-05 17:58:43 -05:00
}
fn cat(in_x : usize, in_y : isize) -> cat {
2012-09-05 17:58:43 -05:00
cat {
meows: in_x,
how_hungry: in_y
}
}
pub fn main() {
let nyan : cat = cat(52, 99);
let kitty = cat(1000, 2);
assert_eq!(nyan.how_hungry, 99);
assert_eq!(kitty.how_hungry, 2);
}