// run-pass #![feature(box_syntax)] fn f(x: Box) -> Box { return x; } pub fn main() { let x = f(box 3); println!("{}", *x); }