blob: 509d069d40fecd73c38ff369e61adfcc80fbdb60 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
// run-pass
#![feature(box_syntax)]
// Tests for if as expressions returning boxed types
fn test_box() {
let rs: Box<_> = if true { box 100 } else { box 101 };
assert_eq!(*rs, 100);
}
pub fn main() { test_box(); }
|