diff options
author | Ilya Ryzhenkov <orangy@jetbrains.com> | 2014-07-12 17:38:16 +0400 |
---|---|---|
committer | Ilya Ryzhenkov <orangy@jetbrains.com> | 2014-07-12 17:38:16 +0400 |
commit | a77f01b4308945e44d05e7e05dc242512e5132eb (patch) | |
tree | fdb131cfb0005844df95b0765285e5cbdc1ca614 /test/data/functions | |
parent | 1da7b0d28cc101c58e58b4ba00a7ed5890df34f5 (diff) | |
download | dokka-a77f01b4308945e44d05e7e05dc242512e5132eb.tar.gz dokka-a77f01b4308945e44d05e7e05dc242512e5132eb.tar.bz2 dokka-a77f01b4308945e44d05e7e05dc242512e5132eb.zip |
Process Modality (final, open, abstract) and Visibility (public, protected, internal, private)
Diffstat (limited to 'test/data/functions')
-rw-r--r-- | test/data/functions/genericFunction.kt | 2 | ||||
-rw-r--r-- | test/data/functions/genericFunctionWithConstraints.kt | 2 |
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 |