diff options
Diffstat (limited to 'test/data')
-rw-r--r-- | test/data/functions/annotatedFunctionWithAnnotationParameters.kt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/data/functions/annotatedFunctionWithAnnotationParameters.kt b/test/data/functions/annotatedFunctionWithAnnotationParameters.kt index e3bc45c9..e559713a 100644 --- a/test/data/functions/annotatedFunctionWithAnnotationParameters.kt +++ b/test/data/functions/annotatedFunctionWithAnnotationParameters.kt @@ -4,4 +4,4 @@ public annotation class Fancy(val size: Int) -Fancy(1) fun f() {} +@Fancy(1) fun f() {} |