5e63f7627f
KT-59486
26 lines
609 B
Kotlin
Vendored
26 lines
609 B
Kotlin
Vendored
// CHECK:
|
|
// Mangled name: SomeAnn
|
|
// Public signature: /SomeAnn|null[0]
|
|
open annotation class SomeAnn : Annotation {
|
|
// CHECK:
|
|
// Mangled name: SomeAnn#<init>(){}
|
|
// Public signature: /SomeAnn.<init>|-5645683436151566731[0]
|
|
// Public signature debug description: <init>(){}
|
|
constructor() /* primary */
|
|
|
|
}
|
|
|
|
// CHECK:
|
|
// Mangled name: My
|
|
// Public signature: /My|null[0]
|
|
@SomeAnn
|
|
class My {
|
|
// CHECK:
|
|
// Mangled name: My#<init>(){}
|
|
// Public signature: /My.<init>|-5645683436151566731[0]
|
|
// Public signature debug description: <init>(){}
|
|
constructor() /* primary */
|
|
|
|
}
|
|
|