diff options
author | Dmitry Jemerov <yole@jetbrains.com> | 2016-03-31 15:38:07 +0200 |
---|---|---|
committer | Dmitry Jemerov <yole@jetbrains.com> | 2016-03-31 15:38:20 +0200 |
commit | 6051ab5051be76d6c830a9996901bfbb9e1f901e (patch) | |
tree | 458869901d1157960995e67f910093de06f494bf /core/testdata/javadoc | |
parent | 8e5aaee1c45753bc9a16bf4bff2387ef0fd70661 (diff) | |
download | dokka-6051ab5051be76d6c830a9996901bfbb9e1f901e.tar.gz dokka-6051ab5051be76d6c830a9996901bfbb9e1f901e.tar.bz2 dokka-6051ab5051be76d6c830a9996901bfbb9e1f901e.zip |
Fix the implementation of containingClass() in javadoc adapters. Resolves #57
Diffstat (limited to 'core/testdata/javadoc')
-rw-r--r-- | core/testdata/javadoc/exception.kt | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/core/testdata/javadoc/exception.kt b/core/testdata/javadoc/exception.kt new file mode 100644 index 00000000..ec0a5bbb --- /dev/null +++ b/core/testdata/javadoc/exception.kt @@ -0,0 +1,5 @@ +package foo + +class MyException : Exception { + fun foo() = "" +} |