Remove logging iterator
This commit is contained in:
parent
ad9f707bf5
commit
08d31e0f09
1 changed files with 0 additions and 3 deletions
|
@ -1838,9 +1838,6 @@ impl<'a, 'tcx> InferCtxt<'a, 'tcx> {
|
||||||
.iter()
|
.iter()
|
||||||
.filter(|field| field.vis.is_accessible_from(field.did, self.tcx))
|
.filter(|field| field.vis.is_accessible_from(field.did, self.tcx))
|
||||||
.map(|field| (field.ident.name, field.ty(self.tcx, expected_substs)))
|
.map(|field| (field.ident.name, field.ty(self.tcx, expected_substs)))
|
||||||
.inspect(|(name, ty)| {
|
|
||||||
debug!("suggest_field_where_appropriate: name={:?}, ty={:?}", name, ty)
|
|
||||||
})
|
|
||||||
.find(|(_, ty)| ty::TyS::same_type(ty, exp_found.found))
|
.find(|(_, ty)| ty::TyS::same_type(ty, exp_found.found))
|
||||||
{
|
{
|
||||||
if let ObligationCauseCode::Pattern { span: Some(span), .. } = cause.code {
|
if let ObligationCauseCode::Pattern { span: Some(span), .. } = cause.code {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue