From 6051ab5051be76d6c830a9996901bfbb9e1f901e Mon Sep 17 00:00:00 2001 From: Dmitry Jemerov Date: Thu, 31 Mar 2016 15:38:07 +0200 Subject: Fix the implementation of containingClass() in javadoc adapters. Resolves #57 --- core/testdata/javadoc/exception.kt | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 core/testdata/javadoc/exception.kt (limited to 'core/testdata/javadoc') 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() = "" +} -- cgit