// run-pass #![feature(box_syntax)] fn test() -> Box { box 42 } fn main() { assert_eq!(*test(), 42); }