aboutsummaryrefslogblamecommitdiff
path: root/tests/pos/t2698.scala
blob: bce02e48b3d68cac3787a3fbe573648799426933 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13
14













                                                      
class WordExp {
  abstract class Label
  type _labelT <: Label
}

import scala.collection._

abstract class S2 {
  val lang: WordExp
  type __labelT = lang._labelT

  var deltaq: Array[__labelT] = _
  def delta1  = immutable.Map(deltaq.zipWithIndex: _*)
}