aboutsummaryrefslogtreecommitdiff
path: root/core/testdata/javadoc/kdocKeywordsOnMethod.kt
diff options
context:
space:
mode:
Diffstat (limited to 'core/testdata/javadoc/kdocKeywordsOnMethod.kt')
-rw-r--r--core/testdata/javadoc/kdocKeywordsOnMethod.kt12
1 files changed, 12 insertions, 0 deletions
diff --git a/core/testdata/javadoc/kdocKeywordsOnMethod.kt b/core/testdata/javadoc/kdocKeywordsOnMethod.kt
new file mode 100644
index 000000000..df5bbbe0f
--- /dev/null
+++ b/core/testdata/javadoc/kdocKeywordsOnMethod.kt
@@ -0,0 +1,12 @@
+class FireException : Exception
+
+
+/**
+ * COMM
+ * @param a Some string
+ * @return value of a
+ * @throws FireException in case of fire
+ */
+@Throws(FireException::class)
+fun my(a: String): String = a
+