summaryrefslogtreecommitdiff
path: root/test/files/run/bug1309.scala
blob: d753f4d96c50104bdf47b2aad0918ce84309f3b5 (plain) (blame)
1
2
3
4
5
6
7
object Test {
  def f(ras: => RandomAccessSeq[Byte]): RandomAccessSeq[Byte] = ras

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