aboutsummaryrefslogblamecommitdiff
path: root/tests/run/t1309.scala
blob: 84963549a27ec637593ff1eafec2a22d8ea99345 (plain) (tree)
1
2
3
4
5
6
7






                                                         
object Test {
  def f(ras: => IndexedSeq[Byte]): IndexedSeq[Byte] = ras

  def main(args: Array[String]): Unit = {
    f(new Array[Byte](0))
  }
}