summary refs log tree commit diff
path: root/tests/ui/cancel-clean-via-immediate-rvalue-ref.rs
blob: 12d143bd98953649100e7326162fd30ab06369c5 (plain)
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));
}