summaryrefslogtreecommitdiff
path: root/test/files/run/macro-reify-ref-to-packageless/Impls_1.scala
blob: bc0015774ed6121aadded87488340b699a9f7e07 (plain) (blame)
1
2
3
4
5
6
import scala.reflect.macros.{BlackboxContext => Ctx}

object Impls {
  val `Answer to the Ultimate Question of Life, the Universe, and Everything` = 42
  def foo(c: Ctx) = c.universe.reify { `Answer to the Ultimate Question of Life, the Universe, and Everything` }
}