c251eb19a6
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
65 lines
974 B
Plaintext
Vendored
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;
|
|
}
|
|
}
|