-
Notifications
You must be signed in to change notification settings - Fork 19
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
typetools/checker-framework 3.43.0 release #1080
Conversation
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Michael Ernst <[email protected]> Co-authored-by: Werner Dietl <[email protected]> Co-authored-by: Aosen Xiong <[email protected]> Co-authored-by: Werner Dietl <[email protected]> Co-authored-by: Alex Liu <[email protected]> Co-authored-by: Manu Sridharan <[email protected]> Co-authored-by: Suzanne Millstein <[email protected]> Co-authored-by: Manu Sridharan <[email protected]> Co-authored-by: James Yoo <[email protected]> Co-authored-by: Michael Ernst <[email protected]> Co-authored-by: Pratik Bhusal <[email protected]> Co-authored-by: Aosen Xiong <[email protected]> Co-authored-by: Hamed Taghani <[email protected]> Co-authored-by: Alex Liu <[email protected]> Co-authored-by: Sanjay Malakar <[email protected]> Co-authored-by: Markus Frohme <[email protected]> Co-authored-by: Martin Kellogg <[email protected]>
This is a minimzed version test case.
|
methodName, | ||
invokedMethod.getTypeVariables()); | ||
List<AnnotatedTypeMirror> params = | ||
AnnotatedTypes.adaptParameters( |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@wmdietl Why adapt the parameters again? Code at line 2024 will call this method in the body. After that adaptation, it changes invokedMethod's parameter type from AnnotatedArrayType
to AnnotatedDeclaredType
, adapt it again will do a cast from AnnotatedDeclaredType
to AnnotatedArrayType
and caused the crash.
Merge with: