8000
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
package foo class A object B { def default: B = new B } private[foo] class B extends A
package bar val x = B.default
In this case, we might consider ascribing type A to x since B is private[foo]. On the other hand, we can also warn or error.
A
x
B
private[foo]
The text was updated successfully, but these errors were encountered:
Note: this is unlikely to have high return on investment for the kind targets we've run RscCompat on (apparently this is rare-ish).
Sorry, something went wrong.
No branches or pull requests
In this case, we might consider ascribing type
A
tox
sinceB
isprivate[foo]
. On the other hand, we can also warn or error.The text was updated successfully, but these errors were encountered: