Files
kotlin-fork/compiler/testData/diagnostics/testsWithStdLib/experimental/fullFqNameUsage.kt
T
2021-06-08 11:37:27 +03:00

15 lines
214 B
Kotlin
Vendored

// FIR_IDENTICAL
// !USE_EXPERIMENTAL: kotlin.RequiresOptIn
package test.abc
@RequiresOptIn
@Retention(AnnotationRetention.BINARY)
annotation class E
@OptIn(test.abc.E::class)
fun f() {}
@test.abc.E
fun g() {}