summaryrefslogtreecommitdiff
path: root/test/files/run/macro-reify-ref-to-packageless/Impls_1.scala
blob: f19fd239f9aa6e3741b6a517ec8193ac87a4df8b (plain) (blame)
1
2
3
4
5
6
import scala.reflect.macros.{Context => 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` }
}