a0778ad703
This reverts commit 66754e62
156 lines
3.3 KiB
Plaintext
Vendored
156 lines
3.3 KiB
Plaintext
Vendored
import kotlin.reflect.KClass;
|
|
|
|
@kotlin.Metadata()
|
|
@java.lang.annotation.Retention(value = java.lang.annotation.RetentionPolicy.RUNTIME)
|
|
public abstract @interface Anno {
|
|
|
|
public abstract java.lang.Class<java.lang.Object> a();
|
|
}
|
|
|
|
////////////////////
|
|
|
|
|
|
import kotlin.reflect.KClass;
|
|
|
|
@kotlin.Metadata()
|
|
@Anno(a = ABC.class)
|
|
public final class ErrorInAnnotation {
|
|
|
|
public ErrorInAnnotation() {
|
|
super();
|
|
}
|
|
}
|
|
|
|
////////////////////
|
|
|
|
|
|
import kotlin.reflect.KClass;
|
|
|
|
@kotlin.Metadata()
|
|
public final class ErrorInConstructorParameter {
|
|
@org.jetbrains.annotations.NotNull()
|
|
private final java.lang.String a = null;
|
|
@org.jetbrains.annotations.NotNull()
|
|
private final ABC b = null;
|
|
@org.jetbrains.annotations.NotNull()
|
|
private final java.util.List<ABC> c = null;
|
|
|
|
@org.jetbrains.annotations.NotNull()
|
|
public final java.lang.String getA() {
|
|
return null;
|
|
}
|
|
|
|
@org.jetbrains.annotations.NotNull()
|
|
public final ABC getB() {
|
|
return null;
|
|
}
|
|
|
|
@org.jetbrains.annotations.NotNull()
|
|
public final java.util.List<ABC> getC() {
|
|
return null;
|
|
}
|
|
|
|
public ErrorInConstructorParameter(@org.jetbrains.annotations.NotNull()
|
|
java.lang.String a, @org.jetbrains.annotations.NotNull()
|
|
ABC b, @org.jetbrains.annotations.NotNull()
|
|
java.util.List<? extends ABC> c) {
|
|
super();
|
|
}
|
|
}
|
|
|
|
////////////////////
|
|
|
|
|
|
import kotlin.reflect.KClass;
|
|
|
|
@kotlin.Metadata()
|
|
public final class ErrorInDeclarations {
|
|
@org.jetbrains.annotations.NotNull()
|
|
public java.lang.String p1;
|
|
@org.jetbrains.annotations.NotNull()
|
|
public ABC p2;
|
|
@org.jetbrains.annotations.NotNull()
|
|
public BCD<java.lang.String> p3;
|
|
|
|
@org.jetbrains.annotations.NotNull()
|
|
public final java.lang.String getP1() {
|
|
return null;
|
|
}
|
|
|
|
public final void setP1(@org.jetbrains.annotations.NotNull()
|
|
java.lang.String p0) {
|
|
}
|
|
|
|
@org.jetbrains.annotations.NotNull()
|
|
public final ABC getP2() {
|
|
return null;
|
|
}
|
|
|
|
public final void setP2(@org.jetbrains.annotations.NotNull()
|
|
ABC p0) {
|
|
}
|
|
|
|
@org.jetbrains.annotations.NotNull()
|
|
public final BCD<java.lang.String> getP3() {
|
|
return null;
|
|
}
|
|
|
|
public final void setP3(@org.jetbrains.annotations.NotNull()
|
|
BCD<java.lang.String> p0) {
|
|
}
|
|
|
|
public final void overloads(@org.jetbrains.annotations.NotNull()
|
|
java.lang.String a) {
|
|
}
|
|
|
|
public final void overloads(@org.jetbrains.annotations.NotNull()
|
|
ABC a) {
|
|
}
|
|
|
|
public final void f1(@org.jetbrains.annotations.NotNull()
|
|
java.lang.String a, @org.jetbrains.annotations.NotNull()
|
|
ABC<java.util.List<java.lang.String>> b) {
|
|
}
|
|
|
|
public final <T extends java.lang.String>void f2() {
|
|
}
|
|
|
|
public final <T extends java.lang.Object>void f3() {
|
|
}
|
|
|
|
@org.jetbrains.annotations.Nullable()
|
|
public final ABC f4() {
|
|
return null;
|
|
}
|
|
|
|
public ErrorInDeclarations() {
|
|
super();
|
|
}
|
|
}
|
|
|
|
////////////////////
|
|
|
|
|
|
import kotlin.reflect.KClass;
|
|
|
|
@kotlin.Metadata()
|
|
public final class ErrorInSupertype implements ABC {
|
|
|
|
public ErrorInSupertype() {
|
|
super();
|
|
}
|
|
}
|
|
|
|
////////////////////
|
|
|
|
|
|
import kotlin.reflect.KClass;
|
|
|
|
@kotlin.Metadata()
|
|
public final class ErrorInSupertype2 extends ABC<java.lang.String> {
|
|
|
|
public ErrorInSupertype2() {
|
|
super();
|
|
}
|
|
}
|