nit: Make get_infer_ret_ty name more consistent with is_suggestable_infer_ty
This commit is contained in:
parent
4363f9b6f6
commit
c5d4996404
5 changed files with 5 additions and 5 deletions
|
@ -1371,7 +1371,7 @@ fn lower_fn_sig_recovering_infer_ret_ty<'tcx>(
|
|||
generics: &'tcx hir::Generics<'tcx>,
|
||||
def_id: LocalDefId,
|
||||
) -> ty::PolyFnSig<'tcx> {
|
||||
if let Some(infer_ret_ty) = sig.decl.output.get_infer_ret_ty() {
|
||||
if let Some(infer_ret_ty) = sig.decl.output.is_suggestable_infer_ty() {
|
||||
return recover_infer_ret_ty(icx, infer_ret_ty, generics, def_id);
|
||||
}
|
||||
|
||||
|
|
|
@ -187,7 +187,7 @@ impl TaitConstraintLocator<'_> {
|
|||
"foreign items cannot constrain opaque types",
|
||||
);
|
||||
if let Some(hir_sig) = hir_node.fn_sig()
|
||||
&& hir_sig.decl.output.get_infer_ret_ty().is_some()
|
||||
&& hir_sig.decl.output.is_suggestable_infer_ty().is_some()
|
||||
{
|
||||
let guar = self.tcx.dcx().span_delayed_bug(
|
||||
hir_sig.decl.output.span(),
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue