b0e97de8a8
Placing location table inside .java file triggers annotation processor to run on each line table modification (even when the stub declarations themselves are the same). So we move it to the separate file.
35 lines
411 B
Plaintext
Vendored
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 bar() {
|
|
}
|
|
|
|
public static final void foo() {
|
|
}
|
|
}
|
|
|
|
////////////////////
|
|
|
|
package test;
|
|
|
|
import java.lang.System;
|
|
|
|
@kotlin.Metadata()
|
|
public final class M2 {
|
|
|
|
public M2() {
|
|
super();
|
|
}
|
|
|
|
public static final void baz() {
|
|
}
|
|
}
|