summaryrefslogtreecommitdiff
path: root/test/pending/run/macro-reify-array/Macros_1.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/pending/run/macro-reify-array/Macros_1.scala')
-rw-r--r--test/pending/run/macro-reify-array/Macros_1.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/pending/run/macro-reify-array/Macros_1.scala b/test/pending/run/macro-reify-array/Macros_1.scala
index 99006c548a..f970be5caa 100644
--- a/test/pending/run/macro-reify-array/Macros_1.scala
+++ b/test/pending/run/macro-reify-array/Macros_1.scala
@@ -4,7 +4,7 @@ object Macros {
def foo[T](s: String) = macro Impls.foo[T]
object Impls {
- def foo[T: c.AbsTypeTag](c: Ctx)(s: c.Expr[T]) = c.universe.reify {
+ def foo[T: c.WeakTypeTag](c: Ctx)(s: c.Expr[T]) = c.universe.reify {
Array(s.splice)
}
}