aboutsummaryrefslogblamecommitdiff
path: root/tests/pos/t2795-old.scala
blob: 935cb1f44439670b57698d83f71547e1af5c0e9c (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
















                                             
package t1

trait Element[T] {
}

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

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