]> git.lizzy.rs Git - rust.git/blobdiff - compiler/rustc_mir_build/src/build/expr/into.rs
Auto merge of #100707 - dzvon:fix-typo, r=davidtwco
[rust.git] / compiler / rustc_mir_build / src / build / expr / into.rs
index dd6162300c34cd566d35c1a163c717196ce68c4c..48ec7a06724a11d0c11081d2da602d590681fe4c 100644 (file)
@@ -314,7 +314,7 @@ pub(crate) fn expr_into_dest(
                 this.cfg.push_assign(block, source_info, destination, address_of);
                 block.unit()
             }
-            ExprKind::Adt(box Adt {
+            ExprKind::Adt(box AdtExpr {
                 adt_def,
                 variant_index,
                 substs,
@@ -400,7 +400,12 @@ pub(crate) fn expr_into_dest(
                 );
                 block.unit()
             }
-            ExprKind::InlineAsm(box InlineAsmExpr { template, ref operands, options, line_spans }) => {
+            ExprKind::InlineAsm(box InlineAsmExpr {
+                template,
+                ref operands,
+                options,
+                line_spans,
+            }) => {
                 use rustc_middle::{mir, thir};
                 let operands = operands
                     .into_iter()