Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
9fc4d94d04f972782fee2dc5b3b25d052d88601a
/
.
/
compiler
/
testData
/
diagnostics
/
tests
/
annotations
/
nestedAnnotationOnOuterClassDeclaration.kt
blob: 551bc254e3c7a1c5060e9b672119cdb27caf7ae2 [
file
]
// FIR_IDENTICAL
// ISSUE: KT-64059
interface
OuterInterface
class
MyClass
:
@MyClass
.
NestedAnnotation
OuterInterface
{
@Target
(
AnnotationTarget
.
CLASS
,
AnnotationTarget
.
TYPE
)
annotation
class
NestedAnnotation
}