summaryrefslogblamecommitdiff
path: root/test/files/pos/t2500.scala
blob: 76dea4cf8d197b0b302732405af0938a5980e9dc (plain) (tree)
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]
}