1 2 3 4 5 6 7 8 9
//@ run-pass fn foo(x: &mut Box<u8>) { *x = Box::new(5); } pub fn main() { foo(&mut Box::new(4)); }