From e455a0dd6af736e46cf83a893f2290aa9440ca71 Mon Sep 17 00:00:00 2001 From: Dmitry Jemerov Date: Mon, 28 Sep 2015 12:27:05 +0200 Subject: update Dokka to M14 --- test/data/functions/annotatedFunctionWithAnnotationParameters.kt | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) (limited to 'test/data/functions') diff --git a/test/data/functions/annotatedFunctionWithAnnotationParameters.kt b/test/data/functions/annotatedFunctionWithAnnotationParameters.kt index ee5b524a..e3bc45c9 100644 --- a/test/data/functions/annotatedFunctionWithAnnotationParameters.kt +++ b/test/data/functions/annotatedFunctionWithAnnotationParameters.kt @@ -1 +1,7 @@ -inlineOptions(InlineOption.LOCAL_CONTINUE_AND_BREAK) fun f() {} +@Target(AnnotationTarget.VALUE_PARAMETER) +@Retention(AnnotationRetention.SOURCE) +@MustBeDocumented +public annotation class Fancy(val size: Int) + + +Fancy(1) fun f() {} -- cgit