Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
2a568be17b8f4a9af8f61b27d156c07d37c12fdc
/
.
/
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
}