diff options
Diffstat (limited to 'test/data/functions/annotatedFunctionWithAnnotationParameters.kt')
-rw-r--r-- | test/data/functions/annotatedFunctionWithAnnotationParameters.kt | 8 |
1 files changed, 7 insertions, 1 deletions
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() {} |