// run-pass #![feature(box_syntax)] fn f(i: Box) { assert_eq!(*i, 100); } pub fn main() { f(box 100); let i = box 100; f(i); }