diff options
author | Krystian Ujma <krystianujma@gmail.com> | 2019-02-15 14:10:27 +0100 |
---|---|---|
committer | Simon Ogorodnik <simon.ogorodnik@gmail.com> | 2019-02-15 16:10:27 +0300 |
commit | 5afb808f984542bb550d124f87c65c71a9148b83 (patch) | |
tree | 50eabe4caf34e0415f7396dd8809f6bf4be6a51a /core/src/test | |
parent | c6da6b752c698085d176acc5b75cb14abcc32f80 (diff) | |
download | dokka-5afb808f984542bb550d124f87c65c71a9148b83.tar.gz dokka-5afb808f984542bb550d124f87c65c71a9148b83.tar.bz2 dokka-5afb808f984542bb550d124f87c65c71a9148b83.zip |
Nullable left off function type parameter with default value (#401) (#328)
Diffstat (limited to 'core/src/test')
-rw-r--r-- | core/src/test/kotlin/format/MarkdownFormatTest.kt | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/core/src/test/kotlin/format/MarkdownFormatTest.kt b/core/src/test/kotlin/format/MarkdownFormatTest.kt index 9fb34e95..b078292b 100644 --- a/core/src/test/kotlin/format/MarkdownFormatTest.kt +++ b/core/src/test/kotlin/format/MarkdownFormatTest.kt @@ -539,4 +539,8 @@ class MarkdownFormatTest: FileGeneratorTestCase() { nodesWithName } } + + @Test fun nullableTypeParameterFunction() { + verifyMarkdownNode("nullableTypeParameterFunction", withKotlinRuntime = true) + } } |