summaryrefslogtreecommitdiff
path: root/test/files/pos/michel1.scala
blob: 88ef206ff07d0889ee51364f384a579e03add349 (plain) (blame)
1
2
3
4
5
6
7
8
9
class A[Ta] (a : Ta) {
  def f = 1
}

trait C {}

class B[Tb] (b : Tb) extends C with A[Tb] (b) {
  def g = 2
}