9688c3e761
Merge-request: KT-MR-14244 Merged-by: Pavel Mikhailovskii <Pavel.Mikhailovskii@jetbrains.com>
40 lines
831 B
Plaintext
Vendored
40 lines
831 B
Plaintext
Vendored
package test;
|
|
|
|
/**
|
|
* internal final annotation class test/Anno : kotlin/Annotation {
|
|
*
|
|
* // signature: <init>()V
|
|
* public constructor()
|
|
*
|
|
* // module name: main
|
|
* }
|
|
*/
|
|
@kotlin.Metadata()
|
|
@java.lang.annotation.Retention(value = java.lang.annotation.RetentionPolicy.RUNTIME)
|
|
public abstract @interface Anno {
|
|
}
|
|
|
|
|
|
////////////////////
|
|
|
|
package test;
|
|
|
|
/**
|
|
* internal final class test/ClassWithParent : error/NonExistentClass, error/NonExistentClass, error/NonExistentClass, kotlin/CharSequence {
|
|
*
|
|
* // signature: <init>()V
|
|
* public constructor()
|
|
*
|
|
* // module name: main
|
|
* }
|
|
*/
|
|
@kotlin.Metadata()
|
|
@Anno()
|
|
@kotlin.Suppress(names = {"UNRESOLVED_REFERENCE"})
|
|
public final class ClassWithParent extends Foo implements Bar, Baz, java.lang.CharSequence {
|
|
|
|
public ClassWithParent() {
|
|
super();
|
|
}
|
|
}
|