Files
kotlin-fork/compiler/testData/diagnostics/testsWithStdLib/experimental/fullFqNameUsage.kt
T
2021-09-10 16:29:16 +03:00

15 lines
204 B
Kotlin
Vendored

// 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() {}