aboutsummaryrefslogtreecommitdiff
path: root/test/src/format
diff options
context:
space:
mode:
authorDmitry Jemerov <yole@jetbrains.com>2015-10-28 12:29:30 +0100
committerDmitry Jemerov <yole@jetbrains.com>2015-10-29 11:57:22 +0100
commitce82e3ef5d2bae1786d9e3fb1fa84d5fe6929fb6 (patch)
treeb9cb6fd31104724cdaff7dac2cc293e6831dbf57 /test/src/format
parent47ccfb0937fa70d727a540d3d9a0bbbc6f1bfc6d (diff)
downloaddokka-ce82e3ef5d2bae1786d9e3fb1fa84d5fe6929fb6.tar.gz
dokka-ce82e3ef5d2bae1786d9e3fb1fa84d5fe6929fb6.tar.bz2
dokka-ce82e3ef5d2bae1786d9e3fb1fa84d5fe6929fb6.zip
render 'reified' modifier for type parameter; fix typo re: rendering type parameter bounds
Diffstat (limited to 'test/src/format')
-rw-r--r--test/src/format/MarkdownFormatTest.kt6
1 files changed, 6 insertions, 0 deletions
diff --git a/test/src/format/MarkdownFormatTest.kt b/test/src/format/MarkdownFormatTest.kt
index c5874b9f..9dc10393 100644
--- a/test/src/format/MarkdownFormatTest.kt
+++ b/test/src/format/MarkdownFormatTest.kt
@@ -191,4 +191,10 @@ public class MarkdownFormatTest {
markdownService.appendNodes(tempLocation, output, model.members)
}
}
+
+ @Test fun reifiedTypeParameter() {
+ verifyOutput("test/data/format/reifiedTypeParameter.kt", ".md") { model, output ->
+ markdownService.appendNodes(tempLocation, output, model.members.single().members)
+ }
+ }
}