diff options
author | Paweł Marks <pmarks@virtuslab.com> | 2020-02-11 15:11:36 +0100 |
---|---|---|
committer | Paweł Marks <Kordyjan@users.noreply.github.com> | 2020-02-12 15:12:09 +0100 |
commit | c770225d5f89535ae5651c422c52633473751364 (patch) | |
tree | f860fedc02bf715449aae6920b6aa110d5575aec /core/src/test/kotlin/basic/DRITest.kt | |
parent | 944695d967c2f93e41e4bfd640238f3e9b1c9434 (diff) | |
download | dokka-c770225d5f89535ae5651c422c52633473751364.tar.gz dokka-c770225d5f89535ae5651c422c52633473751364.tar.bz2 dokka-c770225d5f89535ae5651c422c52633473751364.zip |
Fixes infinite recursion in DRI expansion caused by bounds on nullable parameters
Diffstat (limited to 'core/src/test/kotlin/basic/DRITest.kt')
-rw-r--r-- | core/src/test/kotlin/basic/DRITest.kt | 43 |
1 files changed, 43 insertions, 0 deletions
diff --git a/core/src/test/kotlin/basic/DRITest.kt b/core/src/test/kotlin/basic/DRITest.kt new file mode 100644 index 00000000..f8328e35 --- /dev/null +++ b/core/src/test/kotlin/basic/DRITest.kt @@ -0,0 +1,43 @@ +package basic + +import org.jetbrains.dokka.links.* +import org.junit.Assert.assertEquals +import org.junit.Test +import testApi.testRunner.AbstractCoreTest + +class DRITest: AbstractCoreTest() { + @Test + fun `#634`() { + val configuration = dokkaConfiguration { + passes { + pass { + sourceRoots = listOf("src/") + } + } + } + + testInline( + """ + |/src/main/kotlin/basic/Test.kt + |package toplevel + | + |inline fun <T, R : Comparable<R>> Array<out T>.mySortBy( + | crossinline selector: (T) -> R?): Array<out T> = TODO() + |} + """.trimMargin(), + configuration + ) { + documentablesMergingStage = { module -> + val expected = TypeConstructor("kotlin.Function1", listOf( + TypeParam(listOf(Nullable(TypeConstructor("kotlin.Any", emptyList())))), + Nullable(TypeParam(listOf(TypeConstructor("kotlin.Comparable", listOf(SelfType))))) + )) + val actual = module.packages.single() + .functions.single() + .dri.callable?.params?.single() + assertEquals(expected, actual) + } + } + } + +}
\ No newline at end of file |