aboutsummaryrefslogtreecommitdiff
path: root/core/testdata
diff options
context:
space:
mode:
Diffstat (limited to 'core/testdata')
-rw-r--r--core/testdata/format/multipleTypeParameterConstraints.kt2
-rw-r--r--core/testdata/format/multipleTypeParameterConstraints.md8
2 files changed, 10 insertions, 0 deletions
diff --git a/core/testdata/format/multipleTypeParameterConstraints.kt b/core/testdata/format/multipleTypeParameterConstraints.kt
new file mode 100644
index 00000000..8fd62e11
--- /dev/null
+++ b/core/testdata/format/multipleTypeParameterConstraints.kt
@@ -0,0 +1,2 @@
+fun f<T> where T: Appendable, T: CharSequence {
+}
diff --git a/core/testdata/format/multipleTypeParameterConstraints.md b/core/testdata/format/multipleTypeParameterConstraints.md
new file mode 100644
index 00000000..d6b4e853
--- /dev/null
+++ b/core/testdata/format/multipleTypeParameterConstraints.md
@@ -0,0 +1,8 @@
+[test](test/index) / [f](test/f)
+
+
+# f
+
+`fun &lt;T&gt; f(): Unit where T&nbsp;:&nbsp;Appendable, T&nbsp;:&nbsp;CharSequence`
+
+