Files
kotlin-fork/compiler/testData/diagnostics/tests/annotations/nestedAnnotationOnOuterClassDeclaration.kt
T
Kirill Rakhman 242e16baea [FIR] Don't check class super type annotations for loops
Only do it for typealiases.

#KT-64059 Fixed
2023-12-15 16:39:50 +00:00

11 lines
221 B
Kotlin
Vendored

// FIR_IDENTICAL
// ISSUE: KT-64059
interface OuterInterface
class MyClass: @MyClass.NestedAnnotation OuterInterface {
@Target(AnnotationTarget.CLASS, AnnotationTarget.TYPE)
annotation class NestedAnnotation
}