We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
public JavaEnum returningEnumType() is rendered as fun returningEnumType(): Any
public JavaEnum returningEnumType()
fun returningEnumType(): Any
// same package // File 1: JavaEnum.java public enum JavaEnum { FOO, BAR } // File 2: ContainingEnumType.java public class ContainingEnumType { public JavaEnum returningEnumType() { return null; } public JavaEnum[] returningEnumTypeArray() { return null; } public void acceptingEnumType(JavaEnum javaEnum) {} }
The text was updated successfully, but these errors were encountered:
Handle PsiImmediateClassType as PsiClassType to resolve bounds
PsiImmediateClassType
PsiClassType
8f1f344
Fixes #2646
Handle PsiImmediateClassType as PsiClassType to resolve bounds (#…
a4bccbf
…2647) Fixes #2646
IgnatBeresnev
Successfully merging a pull request may close this issue.
public JavaEnum returningEnumType()
is rendered asfun returningEnumType(): Any
Reproducer:
Screenshot
The text was updated successfully, but these errors were encountered: