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 631ab21 commit 1efad22Copy full SHA for 1efad22
src/base.rs
@@ -770,7 +770,11 @@ fn codegen_stmt<'tcx>(
770
let operand = codegen_operand(fx, operand);
771
crate::unsize::coerce_unsized_into(fx, operand, lval);
772
}
773
- Rvalue::Cast(CastKind::DynStar, ref operand, _) => {
+ Rvalue::Cast(
774
+ CastKind::PointerCoercion(PointerCoercion::DynStar),
775
+ ref operand,
776
+ _,
777
+ ) => {
778
779
crate::unsize::coerce_dyn_star(fx, operand, lval);
780
0 commit comments