bbd09c6272
^KT-62587
13 lines
268 B
Kotlin
Vendored
13 lines
268 B
Kotlin
Vendored
// FIR_IDENTICAL
|
|
import kotlin.reflect.KClass
|
|
|
|
@Target(AnnotationTarget.CLASS, AnnotationTarget.TYPE)
|
|
annotation class Special(val why: KClass<*>)
|
|
|
|
interface Interface
|
|
|
|
object Outer {
|
|
@Special(Nested::class)
|
|
object Nested : @Special(Nested::class) Interface
|
|
}
|