Files
kotlin-fork/plugins/kapt3/kapt3-compiler/testData/converter/multifileClass.txt
T
Ivan Gavrilovic dfdd107fc0 Update KAPT stubs for tests
Update expected outputs so they match
the new sorting rules.
2021-01-13 22:49:09 +09:00

35 lines
411 B
Plaintext
Vendored

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