2024-02-16 20:02:50 +00:00
|
|
|
//@ run-pass
|
2018-09-25 23:51:35 +02:00
|
|
|
#![allow(dead_code)]
|
2018-08-31 15:02:01 +02:00
|
|
|
#![allow(non_camel_case_types)]
|
|
|
|
|
2024-02-16 20:02:50 +00:00
|
|
|
//@ pretty-expanded FIXME #23616
|
2015-03-22 13:13:15 -07:00
|
|
|
|
2012-08-15 18:46:55 -07:00
|
|
|
struct cat {
|
2015-03-25 17:06:52 -07:00
|
|
|
meows : usize,
|
2012-03-26 09:59:59 -07:00
|
|
|
|
2015-03-25 17:06:52 -07:00
|
|
|
how_hungry : isize,
|
2012-09-07 19:04:40 -07:00
|
|
|
}
|
2012-03-26 09:59:59 -07:00
|
|
|
|
2013-05-31 15:17:22 -07:00
|
|
|
impl cat {
|
|
|
|
pub fn play(&mut self) {
|
2015-02-18 05:42:01 -05:00
|
|
|
self.meows += 1_usize;
|
2013-02-25 11:34:16 -08:00
|
|
|
self.nap();
|
|
|
|
}
|
2012-09-05 15:58:43 -07:00
|
|
|
}
|
|
|
|
|
2013-05-31 15:17:22 -07:00
|
|
|
impl cat {
|
2015-02-18 05:42:01 -05:00
|
|
|
fn nap(&mut self) { for _ in 1_usize..10_usize { } }
|
2012-09-07 19:04:40 -07:00
|
|
|
}
|
|
|
|
|
2015-03-25 17:06:52 -07:00
|
|
|
fn cat(in_x : usize, in_y : isize) -> cat {
|
2012-09-05 15:58:43 -07:00
|
|
|
cat {
|
|
|
|
meows: in_x,
|
|
|
|
how_hungry: in_y
|
|
|
|
}
|
2012-03-26 09:59:59 -07:00
|
|
|
}
|
|
|
|
|
2013-02-01 19:43:17 -08:00
|
|
|
pub fn main() {
|
2015-02-18 05:42:01 -05:00
|
|
|
let mut nyan : cat = cat(52_usize, 99);
|
2012-03-26 09:59:59 -07:00
|
|
|
nyan.play();
|
|
|
|
}
|