Files
kotlin-fork/plugins/kapt3/kapt3-compiler/testData/converter/multifileClass.ir.txt
T
Alexander Udalov 2849e45111 Kapt tests: change _ir.txt to .ir.txt
To be consistent with test data of other compiler tests.
2023-01-31 13:49:44 +00:00

31 lines
359 B
Plaintext
Vendored

package test;
@kotlin.Metadata()
public final class M1 {
public M1() {
super();
}
public static final void bar() {
}
public static final void foo() {
}
}
////////////////////
package test;
@kotlin.Metadata()
public final class M2 {
public M2() {
super();
}
public static final void baz() {
}
}