summaryrefslogtreecommitdiff
path: root/plugins/kotlin/idea/tests/testData/quickfix/experimental/appendFileAnnotationWithAnnotationList.kt
blob: 56199e7be4e8ab33a38bde266c11f766d6b6607c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// "Opt in for 'A' in containing file 'appendFileAnnotationWithAnnotationList.kt'" "true"
// COMPILER_ARGUMENTS: -Xopt-in=kotlin.RequiresOptIn
// WITH_RUNTIME
@file:[
    JvmName("Foo")
]

package p

@RequiresOptIn
annotation class A

@A
fun f() {}

fun g() {
    <caret>f()
}