aboutsummaryrefslogtreecommitdiff
path: root/tests/pos/t2500.scala
blob: 4b02fe488c8dfb81b6a7a1936389f467461ca99d (plain) (blame)
1
2
3
4
5
6
object Test {
    import scala.collection._
    ((Map(1 -> "a", 2 -> "b"): collection.Map[Int, String]) map identity[(Int, String)]) : scala.collection.Map[Int,String]
    ((SortedMap(1 -> "a", 2 -> "b"): collection.SortedMap[Int, String]) map identity[(Int, String)]): scala.collection.SortedMap[Int,String]
    ((SortedSet(1, 2): collection.SortedSet[Int]) map identity[Int]): scala.collection.SortedSet[Int]
}