aboutsummaryrefslogtreecommitdiff
path: root/test/data/functions/functionWithAnnotatedParam.kt
diff options
context:
space:
mode:
Diffstat (limited to 'test/data/functions/functionWithAnnotatedParam.kt')
-rw-r--r--test/data/functions/functionWithAnnotatedParam.kt7
1 files changed, 0 insertions, 7 deletions
diff --git a/test/data/functions/functionWithAnnotatedParam.kt b/test/data/functions/functionWithAnnotatedParam.kt
deleted file mode 100644
index f858e671..00000000
--- a/test/data/functions/functionWithAnnotatedParam.kt
+++ /dev/null
@@ -1,7 +0,0 @@
-@Target(AnnotationTarget.VALUE_PARAMETER)
-@Retention(AnnotationRetention.SOURCE)
-@MustBeDocumented
-public annotation class Fancy
-
-fun function(@Fancy notInlined: () -> Unit) {
-}