// run-pass // pretty-expanded FIXME #23616 #![feature(box_syntax)] fn foo(x: &mut Box) { *x = box 5; } pub fn main() { foo(&mut box 4); }