Run rustfmt
This commit is contained in:
parent
c51749af6e
commit
11ddd22510
1 changed files with 3 additions and 1 deletions
|
@ -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() }
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue