Skip to content

Commit 02e5a90

Browse files
committed
pacify the mercilous tidy
1 parent a66ab2b commit 02e5a90

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/librustc_mir/hair/cx/expr.rs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -757,7 +757,9 @@ fn make_mirror_unadjusted<'a, 'gcx, 'tcx>(cx: &mut Cx<'a, 'gcx, 'tcx>,
757757
}
758758
hir::ExprKind::Type(ref source, ref ty) => {
759759
let user_provided_tys = cx.tables.user_provided_tys();
760-
let user_ty = user_provided_tys.get(ty.hir_id).map(|&c_ty| UserTypeAnnotation::Ty(c_ty));
760+
let user_ty = user_provided_tys
761+
.get(ty.hir_id)
762+
.map(|&c_ty| UserTypeAnnotation::Ty(c_ty));
761763
if source.is_place_expr() {
762764
ExprKind::PlaceTypeAscription {
763765
source: source.to_ref(),

0 commit comments

Comments
 (0)