summaryrefslogtreecommitdiff
path: root/test/files/run/macro-expand-varargs-explicit-over-nonvarargs-bad/Macros_Test_2.scala
blob: 523c6b064551a7ab878efd9ee0ccf52a349136cc (plain) (blame)
1
2
3
4
5
6
7
8
9
10
object Macros {
  def foo(xs: Int*) = macro Impls.foo
}

object Test extends App {
  import scala.reflect.mirror._
  val tree = Apply(Select(Ident("Macros"), newTermName("foo")), List(Typed(Apply(Ident(definitions.ListModule), List(Literal(Constant(1)), Literal(Constant(2)))), Ident(tpnme.WILDCARD_STAR))))
  try tree.eval
  catch { case ex: Throwable =>  println(ex.getMessage) }
}