summaryrefslogtreecommitdiff
path: root/test/pending/run/macro-reify-array/Macros_1.scala
blob: af423214843c5e7989bf655c02e0dd13b2a31195 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
import scala.reflect.makro.{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.reify {
      Array(s.eval)
    }
  }
}