diff options
author | Dmitry Jemerov <yole@jetbrains.com> | 2016-07-08 12:55:26 +0200 |
---|---|---|
committer | Dmitry Jemerov <yole@jetbrains.com> | 2016-07-08 12:55:26 +0200 |
commit | 95a606f54604d673a8bda00f19dae81463925475 (patch) | |
tree | 94979d9f7eac102a8254f170a39a860c7df1e2ba /core/testdata/format | |
parent | 0f65cf0e4ce531715b76ac32a36a3dff488b2d70 (diff) | |
download | dokka-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.kt | 6 | ||||
-rw-r--r-- | core/testdata/format/qualifiedNameLink.md | 8 |
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 + |