The following code compiles using Scala but crashes Dotty with a StackOverflowError: ```scala trait Trait { type A <: { type T = B } type B <: A } trait SubTrait extends Trait { val v: A } ```