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
Related to #143 - possibly regressed in scala/scala#5377 (just a guess):
T.java
interface T { default int f() { return 1; } }
Test.scala
trait U extends T class C extends U { def t = super.f }
compiling scalac Test.scala T.java
scalac Test.scala T.java
java.lang.AssertionError: assertion failed: cannot invokespecial T.f, the interface is not a direct parent.
For some reason we don't catch this case in SuperAccessors.
The text was updated successfully, but these errors were encountered:
Fixed in my branch for #228 that eliminates static forwarders (https://github.com/scala/scala/compare/2.12.0...lrytz:traitSuperAccessors?expand=1)
Sorry, something went wrong.
scala/scala#5429
No branches or pull requests
Related to #143 - possibly regressed in scala/scala#5377 (just a guess):
T.java
Test.scala
compiling
scalac Test.scala T.java
For some reason we don't catch this case in SuperAccessors.
The text was updated successfully, but these errors were encountered: