aboutsummaryrefslogtreecommitdiff
path: root/core/testdata/functions/functionWithAnnotatedLambdaParam.kt
diff options
context:
space:
mode:
authorAndroid Build Coastguard Worker <android-build-coastguard-worker@google.com>2021-07-14 00:44:02 +0000
committerAndroid Build Coastguard Worker <android-build-coastguard-worker@google.com>2021-07-14 00:44:02 +0000
commit575181cd739dea6ad1d6940a3011ca5dce35b5ac (patch)
tree7ed184660673e7bac61ae4cd824405bfe2ddb8f7 /core/testdata/functions/functionWithAnnotatedLambdaParam.kt
parentb6a894185cf341bb4f01d760893bacee6b6ab4df (diff)
parent194d376f044f4aa46b53f4c1fef75b511d37694c (diff)
downloaddokka-android-mainline-12.0.0_r107.tar.gz
Change-Id: I684f63dd86b33b6bb6bdec9384dbe007a4370b1a
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) {
+}