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.scala11
1 files changed, 11 insertions, 0 deletions
diff --git a/test/files/run/t7556/Test_2.scala b/test/files/run/t7556/Test_2.scala
new file mode 100644
index 0000000000..31848738ef
--- /dev/null
+++ b/test/files/run/t7556/Test_2.scala
@@ -0,0 +1,11 @@
+import scala.reflect.runtime.universe._
+
+object Test {
+ def main(args: Array[String]) {
+ 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
+ println(s"$N decls via runtime reflection")
+ }
+}