summaryrefslogtreecommitdiff
path: root/test/files/instrumented/t6611.scala
blob: 821d5f3fbfab54bd231540d58354604107b4a524 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
import scala.tools.partest.instrumented.Instrumentation._

object Test {
  def main(args: Array[String]) {
    startProfiling()

    // tests optimization in Cleanup for varargs reference arrays
    val a = Array("")

    stopProfiling()
    printStatistics()
  }
}