summaryrefslogtreecommitdiff
path: root/test/files/run/macro-abort-fresh/Macros_1.scala
blob: 415b76852f1aaa2fe895cef711235666da00563e (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(TypeName("qwe")))
    c.abort(NoPosition, "blargh")
  }
}

object Macros {
  def foo = macro Impls.impl
}