Files
Alexander Udalov c251eb19a6 Kapt: remove old JVM backend test data (2/2)
In this commit, .ir.txt expectation test data files for the JVM IR
backend are renamed to .txt. This is done as two separate commits so
that Git would recognize that these files were logically moved, not that
the contents of the original .txt files were changed.

 #KT-64680
2024-01-03 19:37:40 +00:00

84 lines
1.9 KiB
Plaintext
Vendored

/**
* public abstract interface A : kotlin/Any {
*
* // signature: inject(LA$B;)V
* public abstract fun inject(b: A.B): kotlin/Unit
*
* // getter: getX()Ljava/lang/String;
* public abstract val x: kotlin/String
* public abstract get
*
* // companion object: Companion
*
* // nested class: B
*
* // nested class: Companion
*
* // module name: main
* }
*/
@kotlin.Metadata()
@kotlin.Suppress(names = {"UNRESOLVED_REFERENCE"})
public abstract interface A {
@org.jetbrains.annotations.NotNull()
public static final A.Companion Companion = null;
public abstract void inject(@org.jetbrains.annotations.NotNull()
A.B b);
@org.jetbrains.annotations.NotNull()
public abstract java.lang.String getX();
/**
* public abstract class A.B : A {
*
* // signature: <init>()V
* public constructor()
*
* // signature: inject(LA$B;)V
* public open (* delegation *) fun inject(b: A.B): kotlin/Unit
*
* // getter: getX()Ljava/lang/String;
* public open (* delegation *) val x: kotlin/String
* public open get
*
* // module name: main
* }
*/
@kotlin.Metadata()
public static abstract class B implements A {
public B() {
super();
}
@java.lang.Override()
@org.jetbrains.annotations.NotNull()
public java.lang.String getX() {
return null;
}
@java.lang.Override()
public void inject(@org.jetbrains.annotations.NotNull()
A.B b) {
}
}
/**
* public final companion object A.Companion : A.B {
*
* // signature: <init>()V
* private constructor()
*
* // module name: main
* }
*/
@kotlin.Metadata()
public static final class Companion extends A.B {
private Companion() {
super();
}
}
}