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