summaryrefslogtreecommitdiff
path: root/test/files/pos/michel1.scala
blob: d341abbb87f37f3bf7bcc323de61ec07afe0fc09 (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) with {
  def g = 2
}