1 2 3 4 5 6 7 8 9 10
// run-pass #![feature(box_syntax)] fn test() -> Box<i32> { box 42 } fn main() { assert_eq!(*test(), 42); }