aboutsummaryrefslogtreecommitdiff
path: root/tests/untried/pos/t3486/test.scala
blob: d4534e29f42e9259e5c5d84b7e4673f17649ab21 (plain) (blame)
1
2
3
4
5
6
trait Test[A] {
  def m( a: A ): A
  def specified(a:A):A = a
}

abstract class T2[A] extends Test[A]