1
Fork 0

do not lower patterns in impl Trait

This commit is contained in:
Bastian Kauschke 2020-10-05 00:25:51 +02:00
parent 8f13705e3b
commit 5ac268c435
2 changed files with 19 additions and 0 deletions

View file

@ -538,6 +538,11 @@ impl<'a, 'hir> LoweringContext<'a, 'hir> {
}
self.visit_fn_ret_ty(&f.decl.output)
}
TyKind::ImplTrait(_, ref bounds) => {
self.with_hir_id_owner(None, |this| {
walk_list!(this, visit_param_bound, bounds);
});
}
_ => visit::walk_ty(self, t),
}
}