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.
27 lines
560 B
Plaintext
Vendored
27 lines
560 B
Plaintext
Vendored
import java.lang.System;
|
|
|
|
@kotlin.Metadata()
|
|
public final class FunctionsTest {
|
|
|
|
@org.jetbrains.annotations.NotNull()
|
|
public final kotlin.reflect.KProperty1<java.lang.String, java.lang.Integer> f() {
|
|
return null;
|
|
}
|
|
|
|
@org.jetbrains.annotations.NotNull()
|
|
public final kotlin.jvm.functions.Function2<java.lang.Integer, java.lang.Integer, java.lang.Boolean> f2() {
|
|
return null;
|
|
}
|
|
|
|
public final void f3() {
|
|
}
|
|
|
|
public final int f4() {
|
|
return 0;
|
|
}
|
|
|
|
public FunctionsTest() {
|
|
super();
|
|
}
|
|
}
|