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
42 lines
492 B
Plaintext
Vendored
42 lines
492 B
Plaintext
Vendored
package test;
|
|
|
|
/**
|
|
* multi-file class {
|
|
* // test/M1__AKt
|
|
* // test/M1__BKt
|
|
* }
|
|
*/
|
|
@kotlin.Metadata()
|
|
public final class M1 {
|
|
|
|
public M1() {
|
|
super();
|
|
}
|
|
|
|
public static final void bar() {
|
|
}
|
|
|
|
public static final void foo() {
|
|
}
|
|
}
|
|
|
|
////////////////////
|
|
|
|
package test;
|
|
|
|
/**
|
|
* multi-file class {
|
|
* // test/M2__CKt
|
|
* }
|
|
*/
|
|
@kotlin.Metadata()
|
|
public final class M2 {
|
|
|
|
public M2() {
|
|
super();
|
|
}
|
|
|
|
public static final void baz() {
|
|
}
|
|
}
|