Scala passing type parameters to object
- by Shahzad Mian
In Scala v 2.7.7
I have a file with
class Something[T] extends Other {
}
object Something extends OtherConstructor[Something] {
}
This throws the error:
class Something takes type parameters
object Something extends OtherConstructor[Something] {
However, I can't do this
object Something[T] extends OtherConstructor[Something[T]] {
}
It throws an error:
error: ';' expected but '[' found.
Is it possible to send type parameters to object? Or should I change and simply use Otherconstructor