aboutsummaryrefslogtreecommitdiff
path: root/tests/disabled/macro/run/t5824.scala
blob: c5cfc280f8cc8c1cdac720e76e91f62f02f9f4c9 (plain) (blame)
1
2
3
4
5
6
7
8
import scala.reflect.runtime.universe._
import scala.tools.reflect.Eval

object Test extends dotty.runtime.LegacyApp {
  reify {
    println("%s %s %s".format(List("a", "b", "c"): _*))
  }.eval
}