summaryrefslogtreecommitdiff
path: root/test/files/run/macro-def-infer-return-type/Impls_1.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/run/macro-def-infer-return-type/Impls_1.scala')
-rw-r--r--test/files/run/macro-def-infer-return-type/Impls_1.scala8
1 files changed, 4 insertions, 4 deletions
diff --git a/test/files/run/macro-def-infer-return-type/Impls_1.scala b/test/files/run/macro-def-infer-return-type/Impls_1.scala
index f8636fe725..c670b1e57e 100644
--- a/test/files/run/macro-def-infer-return-type/Impls_1.scala
+++ b/test/files/run/macro-def-infer-return-type/Impls_1.scala
@@ -1,14 +1,14 @@
-import scala.reflect.macros.Context
+import scala.reflect.macros.BlackboxContext
object Impls1 {
- def foo(c: Context)(x: c.Expr[Int]) = x
+ def foo(c: BlackboxContext)(x: c.Expr[Int]) = x
}
object Impls2 {
- def foo[T](c: Context)(x: c.Expr[T]) =
+ def foo[T](c: BlackboxContext)(x: c.Expr[T]) =
throw new Error("an implementation is missing")
}
object Impls3 {
- def foo[T](c: Context)(x: c.Expr[T]): c.Expr[T] = x
+ def foo[T](c: BlackboxContext)(x: c.Expr[T]): c.Expr[T] = x
}