rust/src/test/ui/cancel-clean-via-immediate-rvalue-ref.rs
2019-07-27 18:56:16 +03:00

13 lines
154 B
Rust

// 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);
}