summaryrefslogtreecommitdiff
path: root/test/files/run/t1309.scala
blob: b6a75fe6ae46622596e72363fdc9c1e56b98108d (plain) (blame)
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))
  }
}