summaryrefslogtreecommitdiff
path: root/test/files/run/macro-reify-freevars/Test_2.scala
blob: 55c677155ac5e414a87eb59168ba5df47bcb3ffd (plain) (blame)
1
2
3
4
5
6
7
8
9
object Test extends App {
  import scala.reflect.mirror._
  val q = New(AppliedTypeTree(Select(Select(Select(Ident("scala"), newTermName("collection")), newTermName("slick")), newTypeName("Queryable")), List(Ident("Int"))))
  val x = ValDef(NoMods, newTermName("x"), Ident("Int"), EmptyTree)
  val fn = Function(List(x), Apply(Select(Ident(newTermName("x")), newTermName("$plus")), List(Literal(Constant("5")))))
  val tree = Apply(Select(q, newTermName("map")), List(fn))
  try tree.eval
  catch { case ex: Throwable =>  println(ex.getMessage) }
}