summaryrefslogtreecommitdiff
path: root/test/files/run/macro-reify-tagful-a/Macros_1.scala
blob: 6f061fd26a37ab7820690a1ffb0701fd938a2b1e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
import scala.reflect.runtime.universe._
import scala.reflect.macros.blackbox.Context

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

  object Impls {
    def foo[T: c.WeakTypeTag](c: Context)(s: c.Expr[T]) = c.universe.reify {
      List(s.splice)
    }
  }
}