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
Given:
trait T[A: Numeric] class TX[A: Numeric] extends T[A]
compiler yields:
class TX[A: Numeric] extends T[A] ^^^^ constructor T in trait T does not take parameters
It works if you do extends T[A]()
extends T[A]()
The text was updated successfully, but these errors were encountered:
Note that no error is reported if T is a class
T
Sorry, something went wrong.
99cd405
Merge pull request #4827 from Medowhill/issue4582
13d02bc
Fix #4582: use untpd.New in maybeCall
No branches or pull requests
Given:
compiler yields:
It works if you do
extends T[A]()
The text was updated successfully, but these errors were encountered: