diff options
author | Ilya Ryzhenkov <orangy@jetbrains.com> | 2014-07-11 22:25:01 +0400 |
---|---|---|
committer | Ilya Ryzhenkov <orangy@jetbrains.com> | 2014-07-11 22:25:01 +0400 |
commit | 09935fc1657670eaa8beb1b56718ed267404d7db (patch) | |
tree | d43ad32d8a29fa0e0d73de641b4f459463b16e30 /test/data/functions | |
parent | b511259a37aa9feee06a3ca92b7967552aa34104 (diff) | |
download | dokka-09935fc1657670eaa8beb1b56718ed267404d7db.tar.gz dokka-09935fc1657670eaa8beb1b56718ed267404d7db.tar.bz2 dokka-09935fc1657670eaa8beb1b56718ed267404d7db.zip |
Support type parameter constraints as type parameter details.
Diffstat (limited to 'test/data/functions')
-rw-r--r-- | test/data/functions/genericFunctionWithConstraints.kt | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/test/data/functions/genericFunctionWithConstraints.kt b/test/data/functions/genericFunctionWithConstraints.kt new file mode 100644 index 00000000..11598ae7 --- /dev/null +++ b/test/data/functions/genericFunctionWithConstraints.kt @@ -0,0 +1,6 @@ + +/** + * generic function + */ +fun <T : CharSequence> generic() { +}
\ No newline at end of file |