summaryrefslogblamecommitdiff
path: root/test/files/pos/philippe1.scala
blob: 4b4b22ea79c6bbc8b48affb0839fc129f81d9946 (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);
      ()
  }
}