We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
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
def assume[T]: Any = assume
fails to compile with the following error message
value tailLabel2 does not take parameters
The text was updated successfully, but these errors were encountered:
@nicolasstucki, could you please provide a complete example? I cant reproduce it on a normal method.
Sorry, something went wrong.
object Test { def main(args: Array[String]): Unit = { } def assume[T]: Any = assume }
Fix scala#2024: TypeApply can be a final apply of a recursive method.
b19ab85
nullary methods with type parameters were handled wrongly, which led to absence of type application and a cryptic error message.
Check that scala#2024 is fixed.
c233370
de8d3f9
4733400
Merge pull request #2025 from dotty-staging/fix-2024
4f4e373
Fix #2024: TypeApply can be a final apply of a recursive method.
DarkDimius
No branches or pull requests
fails to compile with the following error message
The text was updated successfully, but these errors were encountered: