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

65 lines
974 B
Plaintext
Vendored

/**
* public final class AnotherRootClass : kotlin/Any {
*
* // signature: <init>()V
* public constructor()
*
* // module name: main
* }
*/
@kotlin.Metadata()
public final class AnotherRootClass {
public AnotherRootClass() {
super();
}
}
////////////////////
/**
* public final class RootClass : kotlin/Any {
*
* // signature: <init>()V
* public constructor()
*
* // module name: main
* }
*/
@kotlin.Metadata()
public final class RootClass {
public RootClass() {
super();
}
}
////////////////////
package test;
/**
* multi-file class {
* // test/M1__BKt
* // test/M1__CKt
* }
*/
@kotlin.Metadata()
public final class M1 {
public M1() {
super();
}
@org.jetbrains.annotations.Nullable()
public static final AnotherRootClass bar() {
return null;
}
@org.jetbrains.annotations.Nullable()
public static final RootClass foo() {
return null;
}
}