2018-08-30 07:18:55 -05:00
|
|
|
// run-pass
|
2013-01-10 15:44:27 -06:00
|
|
|
mod buildings {
|
2015-03-25 19:06:52 -05:00
|
|
|
pub struct Tower { pub height: usize }
|
2013-01-10 15:44:27 -06:00
|
|
|
}
|
|
|
|
|
2013-02-01 21:43:17 -06:00
|
|
|
pub fn main() {
|
2013-01-10 15:44:27 -06:00
|
|
|
let sears = buildings::Tower { height: 1451 };
|
2015-03-25 19:06:52 -05:00
|
|
|
let h: usize = match sears {
|
2013-01-10 15:44:27 -06:00
|
|
|
buildings::Tower { height: h } => { h }
|
|
|
|
};
|
|
|
|
|
2014-01-09 04:06:55 -06:00
|
|
|
println!("{}", h);
|
2013-01-10 15:44:27 -06:00
|
|
|
}
|