summaryrefslogtreecommitdiff
path: root/test/files/run/macro-abort-fresh/Macros_1.scala
blob: af1e292588cc797c78b96ab521a16c5c7a394bcd (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
import scala.reflect.macros.Context

object Impls {
  def impl(c: Context) = {
    import c.universe._
    println(c.fresh())
    println(c.fresh("qwe"))
    println(c.fresh(newTypeName("qwe")))
    c.abort(NoPosition, "blargh")
  }
}

object Macros {
  def foo = macro Impls.impl
}