aboutsummaryrefslogtreecommitdiff
path: root/test/data/classes
diff options
context:
space:
mode:
authorDmitry Jemerov <yole@jetbrains.com>2015-09-07 20:57:17 +0200
committerDmitry Jemerov <yole@jetbrains.com>2015-09-07 20:57:17 +0200
commit97257371e1594b25395c7c4baaaa92fb98a0ce97 (patch)
treec04101d93fa6b20edb924d0cfe0ea9d3fe403327 /test/data/classes
parent3d4cda549bdde68935cb0053dceddb8e64e1e20c (diff)
downloaddokka-97257371e1594b25395c7c4baaaa92fb98a0ce97.tar.gz
dokka-97257371e1594b25395c7c4baaaa92fb98a0ce97.tar.bz2
dokka-97257371e1594b25395c7c4baaaa92fb98a0ce97.zip
work in progress on updating Dokka to latest Kotlin (compiles but does not run yet)
Diffstat (limited to 'test/data/classes')
-rw-r--r--test/data/classes/annotatedClassWithAnnotationParameters.kt2
-rw-r--r--test/data/classes/javaAnnotationClass.kt2
2 files changed, 2 insertions, 2 deletions
diff --git a/test/data/classes/annotatedClassWithAnnotationParameters.kt b/test/data/classes/annotatedClassWithAnnotationParameters.kt
index 1af97e75..930d6a62 100644
--- a/test/data/classes/annotatedClassWithAnnotationParameters.kt
+++ b/test/data/classes/annotatedClassWithAnnotationParameters.kt
@@ -1 +1 @@
-deprecated("should no longer be used") class Foo() {}
+@Deprecated("should no longer be used") class Foo() {}
diff --git a/test/data/classes/javaAnnotationClass.kt b/test/data/classes/javaAnnotationClass.kt
index c5f5cac4..95600147 100644
--- a/test/data/classes/javaAnnotationClass.kt
+++ b/test/data/classes/javaAnnotationClass.kt
@@ -1,5 +1,5 @@
import java.lang.annotation.Retention
import java.lang.annotation.RetentionPolicy
-Retention(RetentionPolicy.SOURCE)
+@Retention(RetentionPolicy.SOURCE)
public annotation class throws()