We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
abstract override
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
3.6.3
I'm pointing to the only abstract override in the scala2 part of the stdlib: https://www.scala-lang.org/api/3.6.3/scala/collection/BitSetOps.html#diff-703
Otherwise, this might be a minimisation:
trait Foo: def foo: Int trait IncFoo extends Foo: abstract override def foo: Int = super.foo + 1
Scaladoc should be add the abstract override modifier for mixins.
The text was updated successfully, but these errors were encountered:
f0c050e
hamzaremmal
Successfully merging a pull request may close this issue.
Compiler version
3.6.3
Minimized code
I'm pointing to the only
abstract override
in the scala2 part of the stdlib: https://www.scala-lang.org/api/3.6.3/scala/collection/BitSetOps.html#diff-703Otherwise, this might be a minimisation:
Expectation
Scaladoc should be add the
abstract override
modifier for mixins.The text was updated successfully, but these errors were encountered: