aboutsummaryrefslogtreecommitdiff
path: root/core/testdata/format
diff options
context:
space:
mode:
authorDmitry Jemerov <yole@jetbrains.com>2016-07-08 12:55:26 +0200
committerDmitry Jemerov <yole@jetbrains.com>2016-07-08 12:55:26 +0200
commit95a606f54604d673a8bda00f19dae81463925475 (patch)
tree94979d9f7eac102a8254f170a39a860c7df1e2ba /core/testdata/format
parent0f65cf0e4ce531715b76ac32a36a3dff488b2d70 (diff)
downloaddokka-95a606f54604d673a8bda00f19dae81463925475.tar.gz
dokka-95a606f54604d673a8bda00f19dae81463925475.tar.bz2
dokka-95a606f54604d673a8bda00f19dae81463925475.zip
update Kotlin compiler and kotlin-ide-common to 1.0.4-dev-13, fixing the qualified name resolve problem in doc comments
Diffstat (limited to 'core/testdata/format')
-rw-r--r--core/testdata/format/qualifiedNameLink.kt6
-rw-r--r--core/testdata/format/qualifiedNameLink.md8
2 files changed, 14 insertions, 0 deletions
diff --git a/core/testdata/format/qualifiedNameLink.kt b/core/testdata/format/qualifiedNameLink.kt
new file mode 100644
index 00000000..be82a990
--- /dev/null
+++ b/core/testdata/format/qualifiedNameLink.kt
@@ -0,0 +1,6 @@
+/**
+ * See [kotlin.apply] for the docs
+ */
+fun foo() {
+
+} \ No newline at end of file
diff --git a/core/testdata/format/qualifiedNameLink.md b/core/testdata/format/qualifiedNameLink.md
new file mode 100644
index 00000000..590bb435
--- /dev/null
+++ b/core/testdata/format/qualifiedNameLink.md
@@ -0,0 +1,8 @@
+[test](test/index) / [foo](test/foo)
+
+# foo
+
+`fun foo(): Unit`
+
+See [kotlin.apply](#) for the docs
+