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.
23 lines
408 B
Plaintext
Vendored
23 lines
408 B
Plaintext
Vendored
import java.lang.System;
|
|
|
|
@kotlin.Metadata()
|
|
@java.lang.annotation.Retention(value = java.lang.annotation.RetentionPolicy.RUNTIME)
|
|
@Anno(color = Color.InvalidFieldName)
|
|
public abstract @interface Anno {
|
|
|
|
public abstract Color color();
|
|
}
|
|
|
|
////////////////////
|
|
|
|
|
|
import java.lang.System;
|
|
|
|
@kotlin.Metadata()
|
|
public enum Color {
|
|
/*public static final*/ BLACK /* = new Color() */;
|
|
|
|
Color() {
|
|
}
|
|
}
|