blob: 781d5c14abe9cbfb32ee976ebb4da40e20ef2410 [file] [log] [blame]
// run-pass
// pretty-expanded FIXME #23616
#![feature(box_syntax)]
fn foo(x: &mut Box<u8>) {
*x = box 5;
}
pub fn main() {
foo(&mut box 4);
}