// run-pass // pretty-expanded FIXME #23616 fn foo(x: &mut Box) { *x = Box::new(5); } pub fn main() { foo(&mut Box::new(4)); }