summaryrefslogtreecommitdiff
path: root/test/files/run/t6860.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/run/t6860.scala')
-rw-r--r--test/files/run/t6860.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/files/run/t6860.scala b/test/files/run/t6860.scala
index 2dcc2a67f7..1391af3430 100644
--- a/test/files/run/t6860.scala
+++ b/test/files/run/t6860.scala
@@ -13,7 +13,7 @@ object Test {
def main(args: Array[String]): Unit = {
val members = typeOf[A].declarations.toList
- val tpes = members flatMap (_.annotations) map (_.tpe)
+ val tpes = members flatMap (_.annotations) map (_.tree.tpe)
tpes.map(_.toString).sorted foreach println
}