diff options
Diffstat (limited to 'core/testdata')
-rw-r--r-- | core/testdata/javadoc/kdocKeywordsOnMethod.kt | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/core/testdata/javadoc/kdocKeywordsOnMethod.kt b/core/testdata/javadoc/kdocKeywordsOnMethod.kt index 63bbaba4..df5bbbe0 100644 --- a/core/testdata/javadoc/kdocKeywordsOnMethod.kt +++ b/core/testdata/javadoc/kdocKeywordsOnMethod.kt @@ -1,7 +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 |