diff options
Diffstat (limited to 'core/testdata/functions/annotatedFunctionWithAnnotationParameters.kt')
-rw-r--r-- | core/testdata/functions/annotatedFunctionWithAnnotationParameters.kt | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/core/testdata/functions/annotatedFunctionWithAnnotationParameters.kt b/core/testdata/functions/annotatedFunctionWithAnnotationParameters.kt deleted file mode 100644 index e559713a..00000000 --- a/core/testdata/functions/annotatedFunctionWithAnnotationParameters.kt +++ /dev/null @@ -1,7 +0,0 @@ -@Target(AnnotationTarget.VALUE_PARAMETER) -@Retention(AnnotationRetention.SOURCE) -@MustBeDocumented -public annotation class Fancy(val size: Int) - - -@Fancy(1) fun f() {} |