-
Notifications
You must be signed in to change notification settings - Fork 387
New issue
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
Add Scala 3 in tests #1727
Add Scala 3 in tests #1727
Conversation
the CI failure:
it's reproducible locally with the problem isn't fixed in 3.4.1-RC2 it's the Scala 3 compiler that's complaining, not javac. but I tried the problematic line seems to be:
if I comment that line out, compilation succeeds. but it's weird that other files in the same directory have the same line if I change I don't see anything obviously relevant in https://github.com/scala/scala3/issues (but maybe I missed something) not sure what to think yet. just writing down what I have so far. need to work on something else now — I'll come back to this but anyone else should feel free to take a look in the meantime |
well, I mean, it's clearly a bug in Scala 3's Java parser. it's just a matter of:
|
I minimized it and filed I will still try to find a way to do without the external dependency (on junit-jupiter-api) as for workarounds, I don't see any wiggle room, can't even think of something to try |
Now I think it is some actual difference in behavior between Scala 2 and 3:
|
Added Scala 3 even for tests and testing. Scala 3 artefacts were published even before.