summaryrefslogblamecommitdiff
path: root/test/files/pos/philippe1.scala
blob: 3cace0e116ed2e36e3f0fcb3be7769905a0a182e (plain) (tree)
1
2
3
4
5
6
7
8







                                         
object test {
  def id[a](xs: Array[a]): Array[a] = xs;

  def main(args: Array[String]): Unit = {
      val res: Array[String] = id(args);
      ()
  }
}