summaryrefslogtreecommitdiff
path: root/test/files/run/delambdafy-specialized.scala
blob: 634d4e490b7a32d99cd0a73f0eb6b818a30d4a8c (plain) (blame)
1
2
3
4
5
6
object Test {
  def main(args: Array[String]): Unit = {
    val f = (x: Int) => -x
    println(f.getClass.getSuperclass.getName)
  }
}