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

18 lines
519 B
Plaintext
Vendored

package test
@kotlin.Deprecated(value = "Class") public final class Class {
/*primary*/ public constructor Class()
@kotlin.Deprecated(value = "companion object") public companion object Companion {
/*primary*/ private constructor Companion()
}
@kotlin.Deprecated(value = "Inner") public final inner class Inner {
/*primary*/ public constructor Inner()
}
@kotlin.Deprecated(value = "Nested") public final class Nested {
/*primary*/ public constructor Nested()
}
}