summaryrefslogtreecommitdiff
path: root/test/files/run/t5903b/Macros_1.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/run/t5903b/Macros_1.scala')
-rw-r--r--test/files/run/t5903b/Macros_1.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/files/run/t5903b/Macros_1.scala b/test/files/run/t5903b/Macros_1.scala
index 8c03e5579d..97f15cec3b 100644
--- a/test/files/run/t5903b/Macros_1.scala
+++ b/test/files/run/t5903b/Macros_1.scala
@@ -4,7 +4,7 @@ import language.experimental.macros
object Interpolation {
implicit class TestInterpolation(c: StringContext) {
object t {
- def unapply[T](x: T) = macro Macros.unapplyImpl[T]
+ def unapply[T](x: T): Any = macro Macros.unapplyImpl[T]
}
}
}