Коробка инвариантна в своем типе T, но это не значит, что там нечего видеть.
abstract class Box {
type T
def get: T
}
type InvariantBox = Box { type T = AnyRef }
type SortofCovariantBox = Box { type T <: AnyRef }
Что изменяет ситуацию с отклонениями, так это степень, в которой тип подвергается воздействию, и то, как онсделанный.Абстрактные типы более непрозрачны.Но вам стоит поиграть с этими вопросами в репле, это довольно интересно.
# get a nightly build, and you need -Ydependent-method-types
% scala29 -Ydependent-method-types
abstract class Box {
type T
def get: T
}
type InvariantBox = Box { type T = AnyRef }
type SortofCovariantBox = Box { type T <: AnyRef }
// what type is inferred for f? why?
def f(x1: SortofCovariantBox, x2: InvariantBox) = List(x1, x2)
// how about this?
def g[U](x1: Box { type T <: U}, x2: Box { type T >: U}) = List(x1.get, x2.get)
и т. Д.