1 2 3 4 5 6 7 8 9
// run-pass fn f() -> Box<isize> { Box::new(100) } pub fn main() { assert_eq!(f(), Box::new(100)); }