2423b7b62f
Also adds rendering of @Metadata annotations in Kapt3 and Kapt4 tests (currently disabled for a few tests). Co-authored-by: Alexander Udalov <alexander.udalov@jetbrains.com>
53 lines
999 B
Plaintext
Vendored
53 lines
999 B
Plaintext
Vendored
package test;
|
|
|
|
@java.lang.annotation.Retention(value = java.lang.annotation.RetentionPolicy.RUNTIME)
|
|
/**
|
|
* internal final annotation class test/Anno : kotlin/Annotation {
|
|
*
|
|
* // signature: <init>()V
|
|
* public constructor()
|
|
*
|
|
* // module name: main
|
|
* }
|
|
*/
|
|
@kotlin.Metadata()
|
|
public abstract @interface Anno {
|
|
}
|
|
|
|
////////////////////
|
|
|
|
package test;
|
|
|
|
@Anno()
|
|
/**
|
|
* internal final class test/ClassWithParent : kotlin/CharSequence {
|
|
*
|
|
* // signature: <init>()V
|
|
* public constructor()
|
|
*
|
|
* // module name: main
|
|
* }
|
|
*/
|
|
@kotlin.Metadata()
|
|
@kotlin.Suppress(names = {"UNRESOLVED_REFERENCE"})
|
|
public final class ClassWithParent implements java.lang.CharSequence {
|
|
|
|
public ClassWithParent() {
|
|
super();
|
|
}
|
|
|
|
@java.lang.Override()
|
|
public final char charAt(int index) {
|
|
return '\u0000';
|
|
}
|
|
|
|
public abstract char get(int index);
|
|
|
|
public abstract int getLength();
|
|
|
|
@java.lang.Override()
|
|
public final int length() {
|
|
return 0;
|
|
}
|
|
}
|