« Return to Thread: Type problem

Type problem

by Naftoli Gugenheim :: Rate this Message:

Reply to Author | View in Thread

trait A[T <: A[T]]
trait B[T < B[T]] extends A[T]

trait C[T <: A[T]]
A and B are library defined.
How can I instantiate a C?

 « Return to Thread: Type problem