summaryrefslogtreecommitdiff
path: root/test/pending/pos/t4787.scala
blob: cf3fe93c508726bab40589c603959e585072f904 (plain) (blame)
1
2
3
4
trait MatrixImpl[@specialized A, @specialized B] {
  def mapTo[ A2,  B2, That <: MatrixImpl[A2, B2]](that: That)(f: A => A2) {
  }
}