Generate trait bounds on associated types

This commit is contained in:
David Tolnay 2025-01-08 11:41:16 -08:00
parent 136859154b
commit 6b3e1e50b2
No known key found for this signature in database
GPG key ID: F9BA143B95FF6D82

View file

@ -25,11 +25,12 @@ impl<'a> ParamsInScope<'a> {
fn crawl(in_scope: &ParamsInScope, ty: &Type, found: &mut bool) {
if let Type::Path(ty) = ty {
if ty.qself.is_none() {
if let Some(ident) = ty.path.get_ident() {
if in_scope.names.contains(ident) {
*found = true;
}
if let Some(qself) = &ty.qself {
crawl(in_scope, &qself.ty, found);
} else {
let front = ty.path.segments.first().unwrap();
if front.arguments.is_none() && in_scope.names.contains(&front.ident) {
*found = true;
}
}
for segment in &ty.path.segments {