We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 23edabb commit d18966aCopy full SHA for d18966a
1 file changed
crates/hir-ty/src/infer/closure.rs
@@ -671,8 +671,7 @@ impl<'db> InferenceContext<'_, 'db> {
671
// that does not misuse a `FnSig` type, but that can be done separately.
672
let return_ty = return_ty.unwrap_or_else(|| self.table.next_ty_var());
673
674
- let sig =
675
- projection.rebind(self.interner().mk_fn_sig_safe_rust_abi(input_tys, return_ty));
+ let sig = projection.rebind(self.interner().mk_fn_sig_safe_rust_abi(input_tys, return_ty));
676
677
Some(sig)
678
}
0 commit comments