Files
kotlin-fork/compiler/testData/diagnostics/testsWithStdLib/experimental/fullFqNameUsage.kt
T

14 lines
175 B
Kotlin
Vendored

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