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.
26 lines
287 B
Plaintext
Vendored
26 lines
287 B
Plaintext
Vendored
package a.b.c;
|
|
|
|
import java.lang.System;
|
|
|
|
@kotlin.Metadata()
|
|
public final class A {
|
|
|
|
public A() {
|
|
super();
|
|
}
|
|
}
|
|
|
|
////////////////////
|
|
|
|
package a.b.typealias.c;
|
|
|
|
import java.lang.System;
|
|
|
|
@kotlin.Metadata()
|
|
public final class E {
|
|
|
|
public E() {
|
|
super();
|
|
}
|
|
}
|