2018-08-30 07:18:55 -05:00
|
|
|
// run-pass
|
2011-09-23 16:58:06 -05:00
|
|
|
|
2012-08-06 14:34:08 -05:00
|
|
|
// Tests for match as expressions resulting in boxed types
|
2012-02-15 02:40:42 -06:00
|
|
|
fn test_box() {
|
2021-08-24 19:39:40 -05:00
|
|
|
let res: Box<_> = match true { true => { Box::new(100) }, _ => panic!() };
|
2015-01-25 15:05:03 -06:00
|
|
|
assert_eq!(*res, 100);
|
2012-02-15 02:40:42 -06:00
|
|
|
}
|
2011-09-23 16:58:06 -05:00
|
|
|
|
2013-02-01 21:43:17 -06:00
|
|
|
pub fn main() { test_box(); }
|