summaryrefslogtreecommitdiff
path: root/test/files/run/t7556/Test_2.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/run/t7556/Test_2.scala')
-rw-r--r--test/files/run/t7556/Test_2.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/files/run/t7556/Test_2.scala b/test/files/run/t7556/Test_2.scala
index 31848738ef..a78c917ed8 100644
--- a/test/files/run/t7556/Test_2.scala
+++ b/test/files/run/t7556/Test_2.scala
@@ -5,7 +5,7 @@ object Test {
val mc = new MegaClass
val anns = mc.getClass.getAnnotations.map(_.annotationType.getName).toList.sorted
println(s"class annotations: $anns")
- val N = typeTag[MegaClass].tpe.declarations.size // was: error reading Scala signature of MegaClass: 65935
+ val N = typeTag[MegaClass].tpe.decls.size // was: error reading Scala signature of MegaClass: 65935
println(s"$N decls via runtime reflection")
}
}