aboutsummaryrefslogtreecommitdiff
path: root/core/testdata
diff options
context:
space:
mode:
authorSimon Ogorodnik <Simon.Ogorodnik@jetbrains.com>2018-02-02 21:27:06 +0300
committerSimon Ogorodnik <Simon.Ogorodnik@jetbrains.com>2018-02-02 21:27:06 +0300
commit4d0496a1ddca7e62f40737fffa1d2f94c85d197c (patch)
tree8dc1422fdbcc1edf0c96bbe6db7a6bbd7db4c668 /core/testdata
parent955e22485813b7ed99ee69fe4a25eb9c4d21a074 (diff)
downloaddokka-4d0496a1ddca7e62f40737fffa1d2f94c85d197c.tar.gz
Take See Also into additional section, fix section headers
Looks like Returns section minor broken (doesn't contain return type)
Diffstat (limited to 'core/testdata')
-rw-r--r--core/testdata/format/java-layout-html/sections.kt15
1 files changed, 15 insertions, 0 deletions
diff --git a/core/testdata/format/java-layout-html/sections.kt b/core/testdata/format/java-layout-html/sections.kt
new file mode 100644
index 000000000..51358d2f0
--- /dev/null
+++ b/core/testdata/format/java-layout-html/sections.kt
@@ -0,0 +1,15 @@
+package foo
+
+/**
+ * @throws ArrayOutOfBoundsException sometimes
+ * @return It's simple void
+ * @see foo.seeMeAlso
+ */
+fun sectionsTest(): Unit {
+ println("!")
+}
+
+
+fun seeMeAlso() {
+
+} \ No newline at end of file