aboutsummaryrefslogtreecommitdiff
path: root/test/data
diff options
context:
space:
mode:
Diffstat (limited to 'test/data')
-rw-r--r--test/data/classes/genericClass.kt3
-rw-r--r--test/data/functions/genericFunction.kt5
2 files changed, 8 insertions, 0 deletions
diff --git a/test/data/classes/genericClass.kt b/test/data/classes/genericClass.kt
new file mode 100644
index 00000000..db20ff7e
--- /dev/null
+++ b/test/data/classes/genericClass.kt
@@ -0,0 +1,3 @@
+class Klass<T> {
+
+} \ No newline at end of file
diff --git a/test/data/functions/genericFunction.kt b/test/data/functions/genericFunction.kt
new file mode 100644
index 00000000..6e07d04b
--- /dev/null
+++ b/test/data/functions/genericFunction.kt
@@ -0,0 +1,5 @@
+
+/**
+ * generic function
+ */
+fun <T> generic() {} \ No newline at end of file