diff options
author | Ilya Ryzhenkov <orangy@jetbrains.com> | 2014-07-11 22:09:41 +0400 |
---|---|---|
committer | Ilya Ryzhenkov <orangy@jetbrains.com> | 2014-07-11 22:09:41 +0400 |
commit | b511259a37aa9feee06a3ca92b7967552aa34104 (patch) | |
tree | 683946a6e0868c10e95f814ec8996b99a9fab08d /test/playground.kt | |
parent | c0f820f4a4dfddbee06cb4c62a3b4609611dac62 (diff) | |
download | dokka-b511259a37aa9feee06a3ca92b7967552aa34104.tar.gz dokka-b511259a37aa9feee06a3ca92b7967552aa34104.tar.bz2 dokka-b511259a37aa9feee06a3ca92b7967552aa34104.zip |
Support type parameters for functions and classes.
Diffstat (limited to 'test/playground.kt')
-rw-r--r-- | test/playground.kt | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/test/playground.kt b/test/playground.kt index 455e56ff..38fd4a3f 100644 --- a/test/playground.kt +++ b/test/playground.kt @@ -40,6 +40,7 @@ class ClassWithConstructor(val name: String) data class Person(/** Doc at parameter */ val name: String, val age: Int) {} object Object { + throws(javaClass<IllegalArgumentException>()) fun objectFunction() { } |