summaryrefslogtreecommitdiff
path: root/test/files/pos/t7461/Macros_1.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/pos/t7461/Macros_1.scala')
-rw-r--r--test/files/pos/t7461/Macros_1.scala4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/files/pos/t7461/Macros_1.scala b/test/files/pos/t7461/Macros_1.scala
index 8621650f77..126e9c067a 100644
--- a/test/files/pos/t7461/Macros_1.scala
+++ b/test/files/pos/t7461/Macros_1.scala
@@ -1,8 +1,8 @@
-import scala.reflect.macros.Context
+import scala.reflect.macros.BlackboxContext
import language.experimental.macros
object Macros {
- def impl(c: Context) = {
+ def impl(c: BlackboxContext) = {
import c.universe._
val wut = c.typeCheck(Select(Literal(Constant(10)), newTermName("$minus")), silent = true)
// println(showRaw(wut, printIds = true, printTypes = true))