aboutsummaryrefslogtreecommitdiff
path: root/test/data/format/overloadsWithDifferentDescriptions.kt
diff options
context:
space:
mode:
Diffstat (limited to 'test/data/format/overloadsWithDifferentDescriptions.kt')
-rw-r--r--test/data/format/overloadsWithDifferentDescriptions.kt15
1 files changed, 15 insertions, 0 deletions
diff --git a/test/data/format/overloadsWithDifferentDescriptions.kt b/test/data/format/overloadsWithDifferentDescriptions.kt
new file mode 100644
index 00000000..ad3169b0
--- /dev/null
+++ b/test/data/format/overloadsWithDifferentDescriptions.kt
@@ -0,0 +1,15 @@
+/**
+ * Performs an action on x.
+ *
+ * This is a long description.
+ * @param x the int value to perform the action on.
+ */
+fun f(x: Int) { }
+
+/**
+ * Performs an action on x.
+ *
+ * This is a long description.
+ * @param x the string value to perform the action on.
+ */
+fun f(x: String) { }