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