diff options
Diffstat (limited to 'core/testdata/format')
-rw-r--r-- | core/testdata/format/linkWithStarProjection.html | 24 | ||||
-rw-r--r-- | core/testdata/format/linkWithStarProjection.kt | 3 |
2 files changed, 27 insertions, 0 deletions
diff --git a/core/testdata/format/linkWithStarProjection.html b/core/testdata/format/linkWithStarProjection.html new file mode 100644 index 00000000..0e829e80 --- /dev/null +++ b/core/testdata/format/linkWithStarProjection.html @@ -0,0 +1,24 @@ +<HTML> +<HEAD> +<title>KClassLoader - test</title> +</HEAD> +<BODY> +<a href="test/index">test</a> / <a href="test/-k-class-loader/index">KClassLoader</a><br/> +<br/> +<h1>KClassLoader</h1> +<code><span class="keyword">object </span><span class="identifier">KClassLoader</span></code><br/> +<br/> +<br/> +<h3>Functions</h3> +<table> +<tbody> +<tr> +<td> +<a href="test/-k-class-loader/foo">foo</a></td> +<td> +<code><span class="keyword">fun </span><span class="identifier">foo</span><span class="symbol">(</span><span class="identifier" id="KClassLoader$foo(kotlin.Enum(()))/c">c</span><span class="symbol">:</span> <span class="identifier">Enum</span><span class="symbol"><</span><span class="identifier">*</span><span class="symbol">></span><span class="symbol">)</span><span class="symbol">: </span><span class="identifier">Unit</span></code></td> +</tr> +</tbody> +</table> +</BODY> +</HTML> diff --git a/core/testdata/format/linkWithStarProjection.kt b/core/testdata/format/linkWithStarProjection.kt new file mode 100644 index 00000000..6da6c595 --- /dev/null +++ b/core/testdata/format/linkWithStarProjection.kt @@ -0,0 +1,3 @@ +object KClassLoader { + fun foo(c: Enum<*>) { } +} |