aboutsummaryrefslogtreecommitdiff
path: root/core/testdata
diff options
context:
space:
mode:
authorSimon Ogorodnik <Simon.Ogorodnik@jetbrains.com>2016-11-02 17:24:33 +0300
committerSimon Ogorodnik <Simon.Ogorodnik@jetbrains.com>2016-11-02 17:24:33 +0300
commit6c16c6197e390576f233223be2283666c566ddb9 (patch)
tree861f678cac96d39d7ba18f3d4dec98a95a8b2395 /core/testdata
parentd1eee305ef865eee8848989363db3f0fed63e11a (diff)
parent40e81322426a925f3fe88e867a8a0e9858847835 (diff)
downloaddokka-6c16c6197e390576f233223be2283666c566ddb9.tar.gz
dokka-6c16c6197e390576f233223be2283666c566ddb9.tar.bz2
dokka-6c16c6197e390576f233223be2283666c566ddb9.zip
Merge branch '0.9.10/GH-98'
Diffstat (limited to 'core/testdata')
-rw-r--r--core/testdata/javadoc/suppress.kt37
1 files changed, 37 insertions, 0 deletions
diff --git a/core/testdata/javadoc/suppress.kt b/core/testdata/javadoc/suppress.kt
new file mode 100644
index 00000000..90f6c131
--- /dev/null
+++ b/core/testdata/javadoc/suppress.kt
@@ -0,0 +1,37 @@
+/**
+ * @suppress
+ */
+class Some {
+
+}
+
+
+/**
+ * @suppress
+ * @author me
+ * @see other
+ */
+class SomeAgain {
+
+}
+
+class Same {
+ /**
+ * @suppress
+ */
+ fun privateApi() {
+
+ }
+
+ /**
+ * @suppress
+ */
+ val privateForSomeReason = ""
+}
+
+/**
+ * @suppress
+ */
+interface Interface {
+
+} \ No newline at end of file