summaryrefslogtreecommitdiff
path: root/test/scaladoc/resources/SI-8514.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/scaladoc/resources/SI-8514.scala')
-rw-r--r--test/scaladoc/resources/SI-8514.scala10
1 files changed, 10 insertions, 0 deletions
diff --git a/test/scaladoc/resources/SI-8514.scala b/test/scaladoc/resources/SI-8514.scala
new file mode 100644
index 0000000000..4c5476604b
--- /dev/null
+++ b/test/scaladoc/resources/SI-8514.scala
@@ -0,0 +1,10 @@
+package a {
+ class DeveloperApi extends scala.annotation.StaticAnnotation
+
+ /** Some doc here */
+ @DeveloperApi
+ class A
+
+ @DeveloperApi
+ class B
+}