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
It seems that yield now returns an additional local symbol for Scala 2.13.15, which is not correct.
for { a <- scala.concurrent.Future.successful(1) b <- scala.concurrent.Future.successful(2) if a < b } yield a
last a is found to be a separate symbol (which might be true internally)
The text was updated successfully, but these errors were encountered:
No branches or pull requests
It seems that yield now returns an additional local symbol for Scala 2.13.15, which is not correct.
last a is found to be a separate symbol (which might be true internally)
The text was updated successfully, but these errors were encountered: