summaryrefslogtreecommitdiff
path: root/test/files/pos/t3477.scala
blob: 660aa55736da61054305932bf1219b5e1e02ad17 (plain) (blame)
1
2
3
4
5
6
7
class J3 {
  def f[K, K1 >: K, V](x: Map[K1, V]): Map[K, V] = error("")
}

object Test {
  (new J3).f(Map[Int, Int]())
}