Merge pull request #4186 from github/rc/1.25

Mergeback: 1.25 -> main
This commit is contained in:
Asger F
2020-09-02 15:12:25 +01:00
committed by GitHub
72 changed files with 732 additions and 424 deletions

View File

@@ -622,7 +622,9 @@ public class ScopeManager {
nd.getReturnType().accept(this, c);
}
for (ITypeExpression paramType : nd.getParameterTypes()) {
paramType.accept(this, c);
if (paramType != null) {
paramType.accept(this, c);
}
}
// note: `infer` types may not occur in type parameter bounds.
return null;