From 95a606f54604d673a8bda00f19dae81463925475 Mon Sep 17 00:00:00 2001 From: Dmitry Jemerov Date: Fri, 8 Jul 2016 12:55:26 +0200 Subject: update Kotlin compiler and kotlin-ide-common to 1.0.4-dev-13, fixing the qualified name resolve problem in doc comments --- core/testdata/format/qualifiedNameLink.kt | 6 ++++++ core/testdata/format/qualifiedNameLink.md | 8 ++++++++ 2 files changed, 14 insertions(+) create mode 100644 core/testdata/format/qualifiedNameLink.kt create mode 100644 core/testdata/format/qualifiedNameLink.md (limited to 'core/testdata/format') 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 + -- cgit