summaryrefslogtreecommitdiff
path: root/test/files/run/macro-reify-ref-to-packageless/Impls_1.scala
blob: 2f2d05678d8cb71f9f563a0fc3558ba1e0b48ead (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.reify { `Answer to the Ultimate Question of Life, the Universe, and Everything` }
}