summaryrefslogtreecommitdiff
path: root/test/files/run/t6394b/Macros_1.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/run/t6394b/Macros_1.scala')
-rw-r--r--test/files/run/t6394b/Macros_1.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/files/run/t6394b/Macros_1.scala b/test/files/run/t6394b/Macros_1.scala
index 53215e63aa..1a747816e3 100644
--- a/test/files/run/t6394b/Macros_1.scala
+++ b/test/files/run/t6394b/Macros_1.scala
@@ -4,7 +4,7 @@ object Macros {
def impl(c:Context): c.Expr[Any] = {
import c.universe._
- val selfTree = This(tpnme.EMPTY)
+ val selfTree = This(typeNames.EMPTY)
c.Expr[AnyRef](selfTree)
}