75 lines
1.4 KiB
Plaintext
Vendored
75 lines
1.4 KiB
Plaintext
Vendored
package kapt;
|
|
|
|
import java.lang.System;
|
|
|
|
@kotlin.Metadata()
|
|
public final class StaticImport {
|
|
private final java.util.Collection<java.lang.String> x = null;
|
|
private final kapt.StaticMethod<java.lang.String> l = null;
|
|
private final kapt.StaticMethod<java.lang.String> m = null;
|
|
private final int y = 0;
|
|
|
|
public final java.util.Collection<java.lang.String> getX() {
|
|
return null;
|
|
}
|
|
|
|
public final kapt.StaticMethod<java.lang.String> getL() {
|
|
return null;
|
|
}
|
|
|
|
public final kapt.StaticMethod<java.lang.String> getM() {
|
|
return null;
|
|
}
|
|
|
|
public final int getY() {
|
|
return 0;
|
|
}
|
|
|
|
public StaticImport() {
|
|
super();
|
|
}
|
|
}
|
|
|
|
////////////////////
|
|
|
|
package kapt;
|
|
|
|
public class StaticMethod<T> {
|
|
|
|
public static <T>StaticMethod<T> of(T t1) {
|
|
return new StaticMethod<T>(t1);
|
|
}
|
|
|
|
public static <T>StaticMethod<T> of(T t1, T t2) {
|
|
return new StaticMethod<T>(t1, t2);
|
|
}
|
|
|
|
public static <T>StaticMethod<T> of2(T t1) {
|
|
return new StaticMethod<T>(t1);
|
|
}
|
|
private final T[] ts;
|
|
|
|
private StaticMethod(T... ts) {
|
|
this.ts = ts;
|
|
}
|
|
}
|
|
|
|
////////////////////
|
|
|
|
package my.lib;
|
|
|
|
import java.lang.System;
|
|
|
|
@kotlin.Metadata()
|
|
public final class LibKt {
|
|
|
|
public LibKt() {
|
|
super();
|
|
}
|
|
|
|
public static final int func(@org.jetbrains.annotations.NotNull()
|
|
java.lang.String $receiver) {
|
|
return 0;
|
|
}
|
|
}
|