summaryrefslogtreecommitdiff
path: root/test/files/neg/t6539/Macro_1.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/neg/t6539/Macro_1.scala')
-rw-r--r--test/files/neg/t6539/Macro_1.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/files/neg/t6539/Macro_1.scala b/test/files/neg/t6539/Macro_1.scala
index ed52776d95..4f7d289e2e 100644
--- a/test/files/neg/t6539/Macro_1.scala
+++ b/test/files/neg/t6539/Macro_1.scala
@@ -5,6 +5,6 @@ object M {
def m(a: Any, b: Any): Any = macro mImpl
def mImpl(c: Context)(a: c.Expr[Any], b: c.Expr[Any]) = a
- @reflect.macros.compileTimeOnly("cto may only be used as an argument to " + "m")
+ @reflect.internal.annotations.compileTimeOnly("cto may only be used as an argument to " + "m")
def cto = 0
}