aboutsummaryrefslogtreecommitdiff
path: root/test/data/format/summarizeSignaturesProperty.kt
diff options
context:
space:
mode:
Diffstat (limited to 'test/data/format/summarizeSignaturesProperty.kt')
-rw-r--r--test/data/format/summarizeSignaturesProperty.kt20
1 files changed, 20 insertions, 0 deletions
diff --git a/test/data/format/summarizeSignaturesProperty.kt b/test/data/format/summarizeSignaturesProperty.kt
new file mode 100644
index 00000000..fbbdd328
--- /dev/null
+++ b/test/data/format/summarizeSignaturesProperty.kt
@@ -0,0 +1,20 @@
+package kotlin
+
+class Array<T>
+class IntArray
+class CharArray
+
+/**
+ * Returns true if foo.
+ */
+val IntArray.foo: Int = 0
+
+/**
+ * Returns true if foo.
+ */
+val CharArray.foo: Int = 0
+
+/**
+ * Returns true if foo.
+ */
+val <T> Array<T>.foo: Int = 0