summaryrefslogtreecommitdiff
path: root/test/files/pos/bug1210a.scala
blob: 7daf7f1179e1cde03eed7a6d5b5e6d5ef438a55d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// 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
  }
}