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.
this.type
The following code:
class X: def foo[T <: this.type](): Unit = ???
when rendered in Scaladoc results in
def foo[T <: X](): Unit
It should be rendered as:
def foo[T <: this.type](): Unit