aboutsummaryrefslogblamecommitdiff
path: root/tests/pos/t3477.scala
blob: 6a94baa6c8dcca44a9ae663b75a64f0ed6702c40 (plain) (tree)
1
2
3
4
5
6
7






                                                                
class J3 {
  def f[K, K1 >: K, V](x: Map[K1, V]): Map[K, V] = sys.error("")
}

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