15 lines
204 B
Kotlin
Vendored
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() {}
|