Run rustfmt

This commit is contained in:
Oli Scherer 2021-03-12 13:46:39 +00:00
parent c51749af6e
commit 11ddd22510

View File

@ -24,7 +24,9 @@ impl<'a, 'tcx> Builder<'a, 'tcx> {
assert_eq!(literal.ty, ty);
Constant { span, user_ty, literal: literal.into() }
}
ExprKind::StaticRef { literal, .. } => Constant { span, user_ty: None, literal: literal.into() },
ExprKind::StaticRef { literal, .. } => {
Constant { span, user_ty: None, literal: literal.into() }
}
ExprKind::ConstBlock { value } => {
Constant { span: span, user_ty: None, literal: value.into() }
}