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