summaryrefslogtreecommitdiff
path: root/test/files/pos/t2795.scala
blob: c355a10c54c530a1156d05ad14c080e2e0367f06 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package bug1

trait Element[T] {
}

trait Config {
  type T <: Element[T]
  // XXX Following works fine:
  // type T <: Element[_]
}

trait Transform { self: Config =>
  def processBlock(block: Array[T]): Unit = {
    var X = new Array[T](1)
  }
}