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 09b50d6 commit 2781669Copy full SHA for 2781669
compiler/rustc_hir_analysis/src/hir_ty_lowering/bounds.rs
@@ -438,7 +438,9 @@ impl<'tcx> dyn HirTyLowerer<'tcx> + '_ {
438
hir::AssocItemConstraintKind::Equality { term } => {
439
let term = match term {
440
hir::Term::Ty(ty) => self.lower_ty(ty).into(),
441
- hir::Term::Const(ct) => ty::Const::from_const_arg_without_feeding(tcx, ct).into(),
+ hir::Term::Const(ct) => {
442
+ ty::Const::from_const_arg_without_feeding(tcx, ct).into()
443
+ }
444
};
445
446
// Find any late-bound regions declared in `ty` that are not
0 commit comments