summaryrefslogtreecommitdiff
path: root/test/pending/run/macro-reify-array/Macros_1.scala
blob: 8fa945b9c6bdd2eba52c0cda104789719c618143 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
import scala.reflect.macros.{Context => Ctx}

object Macros {
  def foo[T](s: String) = macro Impls.foo[T]

  object Impls {
    def foo[T: c.TypeTag](c: Ctx)(s: c.Expr[T]) = c.universe.reify {
      Array(s.splice)
    }
  }
}