aboutsummaryrefslogtreecommitdiff
path: root/core/testdata/format/overloadsWithDifferentDescriptions.kt
blob: ad3169b0cb42665adf367c2e2909f56d6553b826 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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) { }