diff options
Diffstat (limited to 'test/data/format/overloadsWithDifferentDescriptions.kt')
-rw-r--r-- | test/data/format/overloadsWithDifferentDescriptions.kt | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/test/data/format/overloadsWithDifferentDescriptions.kt b/test/data/format/overloadsWithDifferentDescriptions.kt deleted file mode 100644 index ad3169b0..00000000 --- a/test/data/format/overloadsWithDifferentDescriptions.kt +++ /dev/null @@ -1,15 +0,0 @@ -/** - * 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) { } |