summaryrefslogtreecommitdiff
path: root/test/files/run/t5423.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/run/t5423.scala')
-rw-r--r--test/files/run/t5423.scala12
1 files changed, 12 insertions, 0 deletions
diff --git a/test/files/run/t5423.scala b/test/files/run/t5423.scala
new file mode 100644
index 0000000000..fc507c417b
--- /dev/null
+++ b/test/files/run/t5423.scala
@@ -0,0 +1,12 @@
+import java.lang.Class
+import scala.reflect.mirror._
+import scala.reflect.runtime.Mirror.ToolBox
+import scala.reflect.Code
+
+final class table extends StaticAnnotation
+@table class A
+
+object Test extends App {
+ val s = classToSymbol(classOf[A])
+ println(s.annotations)
+}