// run-pass fn f(i: Box) { assert_eq!(*i, 100); } pub fn main() { f(Box::new(100)); let i = Box::new(100); f(i); }