aboutsummaryrefslogblamecommitdiff
path: root/tests/run/t6385.scala
blob: f86fe8c14864c94ea455973c00361ca72ce2b900 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13
             
                                          










                                                     
object Test {
   def main(args: Array[String]): Unit = {
      val y: AA[Int] = C(2)
      val c: Int = y.x.y
      assert(c == 2)
   }
}
trait AA[T] extends Any {
   def x: C[T]
}
case class C[T](val y: T) extends AnyVal with AA[T] {
   def x = this
}