DEBSOURCES
Skip Quicknav
sources / scala / 2.11.12-6 / test / files / run / eta-expand-star2.scala
12345678
object Test { def f[T](xs: T*): T = xs.head def g[T] = f[T] _ def main(args: Array[String]): Unit = { println(g("hello")) } }