summaryrefslogtreecommitdiff
path: root/test/pending/run/t4291.scala
blob: 0213bb2c2090496115289ac84b727b793ddc059f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
import scala.tools.partest._

object Test extends SigTest {
  def main(args: Array[String]): Unit = {
    show[List[_]]("apply")
    show[Option[_]]("get")
    show[Function1[_, _]]("apply")

    for (name <- List("map", "flatMap", "filter", "head", "groupBy")) {
      show[Traversable[_]](name)
      show[Iterable[_]](name)
      show[Seq[_]](name)
      show[Set[_]](name)
      show[Map[_,_]](name)
      show[Vector[_]](name)
      show[Range](name)
    }
  }
}