mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 23:12:02 +00:00
13 lines
243 B
Rust
13 lines
243 B
Rust
//@ run-pass
|
|
//@ aux-build:cci_class.rs
|
|
|
|
extern crate cci_class;
|
|
use cci_class::kitties::cat;
|
|
|
|
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);
|
|
}
|