summaryrefslogblamecommitdiff
path: root/test/files/pos/t1210a.scala
blob: b3492f96e44ac2f9c8510cf6040fae8ba188f815 (plain) (tree)
1
2
3
4
5
6
7
8
9

                                                              
          

                               
 
                                            

   




                          
 
// both styles of abstraction should behave the same
// related to 1210 because that bug broke the OO version below
trait OO {
  abstract class Test { self =>
    type T

    val v: Test {type T = self.T} = self.v.v
  }
}

trait FP {
  abstract class Test[T] {
    val v: Test[T] = v.v
  }
}