summaryrefslogtreecommitdiff
path: root/plugins/kotlin/idea/tests/testData/quickfix/experimental/newFileAnnotationWithPackage.kt
blob: 16170d2922261de1acc678e23378c16e4e104811 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// "Opt in for 'A' in containing file 'newFileAnnotationWithPackage.kt'" "true"
// COMPILER_ARGUMENTS: -opt-in=kotlin.RequiresOptIn
// WITH_RUNTIME
package p

@RequiresOptIn
annotation class A

@A
fun f() {}

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