summaryrefslogtreecommitdiff
path: root/test/files/run/macro-def-path-dependent/Test_2.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/run/macro-def-path-dependent/Test_2.scala')
-rw-r--r--test/files/run/macro-def-path-dependent/Test_2.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/files/run/macro-def-path-dependent/Test_2.scala b/test/files/run/macro-def-path-dependent/Test_2.scala
index cdedaf2732..c884ab9d0b 100644
--- a/test/files/run/macro-def-path-dependent/Test_2.scala
+++ b/test/files/run/macro-def-path-dependent/Test_2.scala
@@ -14,7 +14,7 @@ trait Reifiers {
}
trait Universe extends Exprs with Reifiers {
- def reify[T](expr: T) = macro Impls.reify[T]
+ def reify[T](expr: T): Expr[T] = macro Impls.reify[T]
}
object Impls {