aboutsummaryrefslogtreecommitdiff
path: root/tests/pos/i2219.scala
blob: 7f786eb3eeeb700f8c1d39b7576ccf01116777ba (plain) (blame)
1
2
3
4
5
6
7
object Test {
  type Inv[T[_]] = T[_]

  class Hi[T[_]](x: Inv[T]) {
    def foo[T[_]](value: Inv[T] = x) = {}
  }
}