In Scala v 2.7.7
I have a file with
class Something[T] extends Other object Something extends OtherConstructor[Something]
This throws
An object has to have a concrete type. The Scala object contruct is not a exception to this rule.
A valid definition is
object Something extends OtherConstructor[Something[T]] { }
where T is some concrete type.
T