summaryrefslogtreecommitdiff
path: root/test/files/pos/philippe1.scala
blob: d079c5974a623df880d7760f741763876e02b47a (plain) (blame)
1
2
3
4
5
6
7
8
module test {
  def id[a](xs: Array[a]): Array[a] = xs;

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