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.
In the following example, the Typer runs into an infinite recursion (StackOverflowError):
object test534 { trait B { type D <: { type T } def d: D } val bc: B = new B { def d: D = ??? } val d: bc.D = bc.d // infinite loop in Typer val asT: d.T = ??? }