diff options
Diffstat (limited to 'test/data/format/overloads.kt')
-rw-r--r-- | test/data/format/overloads.kt | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/test/data/format/overloads.kt b/test/data/format/overloads.kt new file mode 100644 index 00000000..dcd2d097 --- /dev/null +++ b/test/data/format/overloads.kt @@ -0,0 +1,5 @@ +/** Performs an action on x. */ +fun f(x: Int) { } + +/** Performs an action on x. */ +fun f(x: String) { } |