Skip to content
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

Class cast bug #3040

Closed
lucacampanella opened this issue Jun 28, 2019 · 0 comments · Fixed by #3042
Closed

Class cast bug #3040

lucacampanella opened this issue Jun 28, 2019 · 0 comments · Fixed by #3042

Comments

@lucacampanella
Copy link

lucacampanella commented Jun 28, 2019

Hi!
I get a class cast exception, looking at the code the problem seems to be in CtTypeReferenceImpl line 811

// case 2: this is an actual type argument of a method/constructor reference
if (parent instanceof CtExecutableReference) {
	CtExecutable<?> exec = ((CtExecutableReference<?>) parent).getExecutableDeclaration();
	if (exec instanceof CtMethod || exec instanceof CtConstructor) {
		return findTypeParamDeclarationByPosition((CtFormalTypeDeclarer) exec, ((CtTypeReference) parent).getActualTypeArguments().indexOf(this));
	}
}

Here we're checking if the parent is a CtExecutableReference, but then casting it to a CtTypeReference.

Thanks
Luca

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging a pull request may close this issue.

1 participant