aboutsummaryrefslogtreecommitdiff
path: root/core/src/test
diff options
context:
space:
mode:
authorKrystian Ujma <krystianujma@gmail.com>2019-02-15 14:10:27 +0100
committerSimon Ogorodnik <simon.ogorodnik@gmail.com>2019-02-15 16:10:27 +0300
commit5afb808f984542bb550d124f87c65c71a9148b83 (patch)
tree50eabe4caf34e0415f7396dd8809f6bf4be6a51a /core/src/test
parentc6da6b752c698085d176acc5b75cb14abcc32f80 (diff)
downloaddokka-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.kt4
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)
+ }
}