2018-08-30 14:18:55 +02:00
|
|
|
// run-pass
|
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() {
|
2021-08-25 02:39:40 +02:00
|
|
|
let res: Box<_> = match true { true => { Box::new(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(); }
|