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
In the scenario below ChildWithTwoParent misses toString method on it's page in K2
ChildWithTwoParent
toString
open class FirstParent { fun basicMethod() = "OK" override fun toString(): String { return super.toString() } } interface ISecondParent {} class ChildWithOneParent : FirstParent() class ChildWithTwoParent : FirstParent(), ISecondParent
K2
K1
Installation
The text was updated successfully, but these errors were encountered:
It is worth to test with non-toString.
Sorry, something went wrong.
There is a workaround for https://youtrack.jetbrains.com/issue/KT-70326/Analysis-API-Inconsistent-allOverriddenSymbols-and-directlyOverriddenSymbols-for-an-intersection-symbol
A minor thing: The toString method appeared in K2, but I see that we missed override keyword. I don't see the same problem for regular methods.
override
Related: #3848
vmishenev
Successfully merging a pull request may close this issue.
In the scenario below
ChildWithTwoParent
missestoString
method on it's page in K2K2

K1

Installation
The text was updated successfully, but these errors were encountered: