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.
34 lines
682 B
Plaintext
Vendored
34 lines
682 B
Plaintext
Vendored
import java.lang.System;
|
|
|
|
@kotlin.Metadata()
|
|
public final class Test {
|
|
@org.jetbrains.annotations.NotNull()
|
|
private static final java.lang.String test = "";
|
|
public static final Test.A A = null;
|
|
|
|
public Test() {
|
|
super();
|
|
}
|
|
|
|
@org.jetbrains.annotations.NotNull()
|
|
public static final java.lang.String getTest() {
|
|
return null;
|
|
}
|
|
|
|
@kotlin.Metadata()
|
|
public static final class A {
|
|
|
|
public static void test$annotations() {
|
|
}
|
|
|
|
@org.jetbrains.annotations.NotNull()
|
|
public final java.lang.String getTest() {
|
|
return null;
|
|
}
|
|
|
|
private A() {
|
|
super();
|
|
}
|
|
}
|
|
}
|