mirror of
https://github.com/rust-lang/rust.git
synced 2024-10-31 22:41:50 +00:00
13 lines
241 B
Rust
13 lines
241 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);
|
|
}
|