aboutsummaryrefslogtreecommitdiff
path: root/core/testdata/functions/functionWithAnnotatedLambdaParam.kt
diff options
context:
space:
mode:
Diffstat (limited to 'core/testdata/functions/functionWithAnnotatedLambdaParam.kt')
-rw-r--r--core/testdata/functions/functionWithAnnotatedLambdaParam.kt7
1 files changed, 7 insertions, 0 deletions
diff --git a/core/testdata/functions/functionWithAnnotatedLambdaParam.kt b/core/testdata/functions/functionWithAnnotatedLambdaParam.kt
new file mode 100644
index 000000000..4136e03b3
--- /dev/null
+++ b/core/testdata/functions/functionWithAnnotatedLambdaParam.kt
@@ -0,0 +1,7 @@
+@Target(AnnotationTarget.TYPE)
+@Retention(AnnotationRetention.SOURCE)
+@MustBeDocumented
+public annotation class Fancy
+
+fun function(notInlined: @Fancy () -> Unit) {
+}