-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Option parsing is broken #323
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
Comments
fyi: java1.7 target is NOT supported by dotty. Backend assumes at least java 1.8(encoding of traits assumes presence of jvm 1.8 default methods, closures are always compiled to jvm 1.7 lambdas). |
Right, it's just the first example I found :) |
@smarter: is this still broken? $ ./bin/dotc -target:jvm-1.7 file.scala Works fine (even if it doesn't do anything with the java 7 choice). |
Fixed by #1180 |
tgodzik
added a commit
to tgodzik/scala3
that referenced
this issue
Apr 29, 2025
Backport "Reword reference article about type projection so that it highlights what is allowed" to 3.3 LTS
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
dotc -target:jvm-1.7
doesn't work, it seems that one needs to typedotc -target jvm-1.7
which is different from scalacThe text was updated successfully, but these errors were encountered: