aboutsummaryrefslogtreecommitdiff
path: root/test/data/functions
diff options
context:
space:
mode:
Diffstat (limited to 'test/data/functions')
-rw-r--r--test/data/functions/genericFunction.kt2
-rw-r--r--test/data/functions/genericFunctionWithConstraints.kt2
2 files changed, 2 insertions, 2 deletions
diff --git a/test/data/functions/genericFunction.kt b/test/data/functions/genericFunction.kt
index 6e07d04b..05a65070 100644
--- a/test/data/functions/genericFunction.kt
+++ b/test/data/functions/genericFunction.kt
@@ -2,4 +2,4 @@
/**
* generic function
*/
-fun <T> generic() {} \ No newline at end of file
+private fun <T> generic() {} \ No newline at end of file
diff --git a/test/data/functions/genericFunctionWithConstraints.kt b/test/data/functions/genericFunctionWithConstraints.kt
index dc7fa3bb..5f22f8c5 100644
--- a/test/data/functions/genericFunctionWithConstraints.kt
+++ b/test/data/functions/genericFunctionWithConstraints.kt
@@ -2,5 +2,5 @@
/**
* generic function
*/
-fun <T : R, R> generic() {
+public fun <T : R, R> generic() {
} \ No newline at end of file