2018-08-30 14:18:55 +02:00
|
|
|
// run-pass
|
2015-01-08 02:25:56 +01:00
|
|
|
#![feature(box_syntax)]
|
2011-09-23 14:58:06 -07:00
|
|
|
|
2012-08-06 12:34:08 -07:00
|
|
|
// Tests for match as expressions resulting in boxed types
|
2012-02-15 09:40:42 +01:00
|
|
|
fn test_box() {
|
2015-02-17 21:41:32 +01:00
|
|
|
let res: Box<_> = match true { true => { box 100 }, _ => panic!() };
|
2015-01-25 22:05:03 +01:00
|
|
|
assert_eq!(*res, 100);
|
2012-02-15 09:40:42 +01:00
|
|
|
}
|
2011-09-23 14:58:06 -07:00
|
|
|
|
2013-02-01 19:43:17 -08:00
|
|
|
pub fn main() { test_box(); }
|