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.
46 lines
907 B
Plaintext
Vendored
46 lines
907 B
Plaintext
Vendored
import java.lang.System;
|
|
|
|
@kotlin.Metadata()
|
|
public abstract class Cls {
|
|
|
|
public abstract void foo(@org.jetbrains.annotations.NotNull()
|
|
java.lang.String abc);
|
|
|
|
@org.jetbrains.annotations.NotNull()
|
|
public final java.lang.String bar(int bcd) {
|
|
return null;
|
|
}
|
|
|
|
public Cls() {
|
|
super();
|
|
}
|
|
}
|
|
|
|
////////////////////
|
|
|
|
|
|
import java.lang.System;
|
|
|
|
@kotlin.Metadata()
|
|
public abstract interface Intf {
|
|
|
|
public abstract void foo(@org.jetbrains.annotations.NotNull()
|
|
java.lang.String abc);
|
|
|
|
@org.jetbrains.annotations.NotNull()
|
|
public abstract java.lang.String bar(int bcd);
|
|
|
|
@kotlin.Metadata()
|
|
public static final class DefaultImpls {
|
|
|
|
public DefaultImpls() {
|
|
super();
|
|
}
|
|
|
|
@org.jetbrains.annotations.NotNull()
|
|
public static java.lang.String bar(Intf $this, int bcd) {
|
|
return null;
|
|
}
|
|
}
|
|
}
|