Files
kotlin/compiler/testData/loadJava/compiledKotlin/annotations/classes/AnnotationInClassObject.txt
Denis Zharkov 4850fd10f0 Regenerate test data containing rendered descriptors
Introduced '@' after each annotation
2015-09-18 10:14:39 +03:00

26 lines
695 B
Plaintext
Vendored

package test
public final class A {
/*primary*/ public constructor A()
public companion object Companion {
/*primary*/ private constructor Companion()
@kotlin.annotation.annotation() public final class Anno1 : kotlin.Annotation {
/*primary*/ public constructor Anno1()
}
public final class B {
/*primary*/ public constructor B()
@kotlin.annotation.annotation() public final class Anno2 : kotlin.Annotation {
/*primary*/ public constructor Anno2()
}
}
}
}
@test.A.Companion.Anno1() @test.A.Companion.B.Anno2() public final class C {
/*primary*/ public constructor C()
}