summaryrefslogtreecommitdiff
path: root/test/files/run/t6381.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/run/t6381.scala')
-rw-r--r--test/files/run/t6381.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/files/run/t6381.scala b/test/files/run/t6381.scala
index 4c2a40fe87..0e2264d8fa 100644
--- a/test/files/run/t6381.scala
+++ b/test/files/run/t6381.scala
@@ -3,7 +3,7 @@ import scala.tools.partest.ReplTest
object Test extends ReplTest {
def code = """
|import language.experimental.macros
- |def pos_impl(c: reflect.macros.Context): c.Expr[String] = {
+ |def pos_impl(c: reflect.macros.BlackboxContext): c.Expr[String] = {
| import c.universe._
| c.Expr[String](Literal(Constant(c.enclosingPosition.getClass.toString)))
|}