We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 83ab12f commit 6c0f4bbCopy full SHA for 6c0f4bb
src/base.rs
@@ -915,6 +915,10 @@ fn codegen_stmt<'tcx>(
915
}
916
crate::discriminant::codegen_set_discriminant(fx, lval, variant_index);
917
918
+ Rvalue::WrapUnsafeBinder(ref operand, _to_ty) => {
919
+ let operand = codegen_operand(fx, operand);
920
+ lval.write_cvalue_transmute(fx, operand);
921
+ }
922
923
924
StatementKind::StorageLive(_)
0 commit comments