summaryrefslogtreecommitdiff
path: root/test/files/run/macro-reify-ref-to-packageless/Impls_1.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/run/macro-reify-ref-to-packageless/Impls_1.scala')
-rw-r--r--test/files/run/macro-reify-ref-to-packageless/Impls_1.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/files/run/macro-reify-ref-to-packageless/Impls_1.scala b/test/files/run/macro-reify-ref-to-packageless/Impls_1.scala
index 2f2d05678d..66c0ee1e9b 100644
--- a/test/files/run/macro-reify-ref-to-packageless/Impls_1.scala
+++ b/test/files/run/macro-reify-ref-to-packageless/Impls_1.scala
@@ -2,5 +2,5 @@ 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` }
+ def foo(c: Ctx) = c.universe.reify { `Answer to the Ultimate Question of Life, the Universe, and Everything` }
}