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
Scala version: 2.13.15
scala> :pa -java // Entering paste mode (ctrl-D to finish) package p; public class X { } // Exiting paste mode... now compiling with javac. scala> class Y extends p.X class Y scala> :pa // Entering paste mode (ctrl-D to finish) package p class Z extends X // Exiting paste mode... now compiling with scalac.
but I can't test Java interop from the Java side.
scala> :pa -java // Entering paste mode (ctrl-D to finish) package p; public class W extends Z { } // Exiting paste mode... now compiling with javac. Compilation failed! cannot find symbol symbol: class Z
Testing interop is the point of the feature.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Reproduction steps
Scala version: 2.13.15
but I can't test Java interop from the Java side.
Problem
Testing interop is the point of the feature.
The text was updated successfully, but these errors were encountered: