main() { let x: u64; let x_ref: &mut u64; let imm_ref: &u64; x = 5; x_ref = &mut x; imm_ref = freeze(move(x_ref)); release(move(imm_ref)); return; }