Files
kotlin/compiler/testData/loadJava/compiledKotlin/annotations/classes/AnnotationInClassObject.txt
Pavel V. Talanov 59f192ef90 Replace 'class object' with 'default object' in renderers and test data
Includes changes to decompiled text
Old syntax is used in builtins and project code for now
2015-03-06 19:36:54 +03:00

26 lines
653 B
Plaintext

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