blob: aa8570900d18cc14c2d3fa6433b5a1a9900e84e4 [file]
// RUN_PIPELINE_TILL: BACKEND
// FIR_IDENTICAL
// OPT_IN: kotlin.RequiresOptIn
package test.abc
@RequiresOptIn
@Retention(AnnotationRetention.BINARY)
annotation class E
@OptIn(test.abc.E::class)
fun f() {}
@test.abc.E
fun g() {}
/* GENERATED_FIR_TAGS: annotationDeclaration, classReference, functionDeclaration */