From 0406a6bce4f461f3ae846911505701324411fa9b Mon Sep 17 00:00:00 2001 From: Dmitry Jemerov Date: Wed, 11 Mar 2015 20:45:21 +0100 Subject: add test to verify that dokka recognizes secondary constructors --- test/data/classes/secondaryConstructor.kt | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 test/data/classes/secondaryConstructor.kt (limited to 'test/data/classes/secondaryConstructor.kt') diff --git a/test/data/classes/secondaryConstructor.kt b/test/data/classes/secondaryConstructor.kt new file mode 100644 index 00000000..e5cb2557 --- /dev/null +++ b/test/data/classes/secondaryConstructor.kt @@ -0,0 +1,5 @@ +class C() { + /** This is a secondary constructor. */ + constructor(s: String): this() { + } +} -- cgit