Files
kotlin-fork/analysis/low-level-api-fir/testData/lazyResolve/classes/nestedClassAsAnnotationArgument2.kt
T
2023-10-17 20:32:11 +00:00

12 lines
295 B
Kotlin
Vendored

import kotlin.reflect.KClass
@Target(AnnotationTarget.CLASS, AnnotationTarget.TYPE_PARAMETER, AnnotationTarget.TYPE)
annotation class Special(val why: KClass<*>)
interface Interface
class Outer {
@Special(Nested)
class N<caret>ested<@Special(Nested) T> : @Special(Nested) Interface
}