summaryrefslogtreecommitdiff
path: root/test/files/run/macro-impl-relaxed/Macros_1.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/run/macro-impl-relaxed/Macros_1.scala')
-rw-r--r--test/files/run/macro-impl-relaxed/Macros_1.scala10
1 files changed, 5 insertions, 5 deletions
diff --git a/test/files/run/macro-impl-relaxed/Macros_1.scala b/test/files/run/macro-impl-relaxed/Macros_1.scala
index af62646b4e..3cf5090ec8 100644
--- a/test/files/run/macro-impl-relaxed/Macros_1.scala
+++ b/test/files/run/macro-impl-relaxed/Macros_1.scala
@@ -1,11 +1,11 @@
import language.experimental.macros
-import scala.reflect.macros.Context
+import scala.reflect.macros.BlackboxContext
object Macros {
- def implUU(c: Context)(x: c.Tree): c.Tree = x
- def implTU(c: Context)(x: c.Expr[Int]): c.Tree = x.tree
- def implUT(c: Context)(x: c.Tree): c.Expr[Int] = c.Expr[Int](x)
- def implTT(c: Context)(x: c.Expr[Int]): c.Expr[Int] = x
+ def implUU(c: BlackboxContext)(x: c.Tree): c.Tree = x
+ def implTU(c: BlackboxContext)(x: c.Expr[Int]): c.Tree = x.tree
+ def implUT(c: BlackboxContext)(x: c.Tree): c.Expr[Int] = c.Expr[Int](x)
+ def implTT(c: BlackboxContext)(x: c.Expr[Int]): c.Expr[Int] = x
def fooUU(x: Int): Int = macro implUU
def fooTU(x: Int): Int = macro implTU