Remove Object from supertypes in LoadJava testData
This commit is contained in:
+1
-1
@@ -2,7 +2,7 @@ package test
|
||||
|
||||
import java.io.Serializable
|
||||
|
||||
public open class AllBoundsInWhen : Object() {
|
||||
public open class AllBoundsInWhen {
|
||||
public open fun <T> foo() where T: Serializable {
|
||||
throw UnsupportedOperationException()
|
||||
}
|
||||
|
||||
+1
-1
@@ -1,6 +1,6 @@
|
||||
package test
|
||||
|
||||
public open class AllBoundsInWhen : java.lang.Object {
|
||||
public open class AllBoundsInWhen {
|
||||
public constructor AllBoundsInWhen()
|
||||
public open fun </*0*/ T : java.io.Serializable> foo(): kotlin.Unit
|
||||
}
|
||||
|
||||
+1
-1
@@ -1,6 +1,6 @@
|
||||
package test
|
||||
|
||||
public open class ArrayType : Object() {
|
||||
public open class ArrayType {
|
||||
public open fun foo(): Array<String> {
|
||||
throw UnsupportedOperationException()
|
||||
}
|
||||
|
||||
+1
-1
@@ -1,6 +1,6 @@
|
||||
package test
|
||||
|
||||
public open class ArrayType : java.lang.Object {
|
||||
public open class ArrayType {
|
||||
public constructor ArrayType()
|
||||
public open fun foo(): kotlin.Array<kotlin.String>
|
||||
}
|
||||
|
||||
+1
-1
@@ -1,4 +1,4 @@
|
||||
package test
|
||||
|
||||
public open class ConstructorWithNewTypeParams<T>(first : Any) : java.lang.Object() {
|
||||
public open class ConstructorWithNewTypeParams<T>(first : Any) {
|
||||
}
|
||||
|
||||
+1
-1
@@ -1,5 +1,5 @@
|
||||
package test
|
||||
|
||||
public open class ConstructorWithNewTypeParams</*0*/ T> : java.lang.Object {
|
||||
public open class ConstructorWithNewTypeParams</*0*/ T> {
|
||||
public constructor ConstructorWithNewTypeParams</*0*/ T>(/*0*/ first: kotlin.Any)
|
||||
}
|
||||
|
||||
+1
-1
@@ -1,4 +1,4 @@
|
||||
package test
|
||||
|
||||
public open class ConstructorWithParentTypeParams<T>(first : T) : java.lang.Object() {
|
||||
public open class ConstructorWithParentTypeParams<T>(first : T) {
|
||||
}
|
||||
|
||||
+1
-1
@@ -1,5 +1,5 @@
|
||||
package test
|
||||
|
||||
public open class ConstructorWithParentTypeParams</*0*/ T> : java.lang.Object {
|
||||
public open class ConstructorWithParentTypeParams</*0*/ T> {
|
||||
public constructor ConstructorWithParentTypeParams</*0*/ T>(/*0*/ first: T)
|
||||
}
|
||||
|
||||
+1
-1
@@ -2,5 +2,5 @@ package test
|
||||
|
||||
import java.util.*
|
||||
|
||||
public open class ConstructorWithSeveralParams(integer: Int, intField : Int, collection : ArrayList<String>) : java.lang.Object() {
|
||||
public open class ConstructorWithSeveralParams(integer: Int, intField : Int, collection : ArrayList<String>) {
|
||||
}
|
||||
|
||||
+1
-1
@@ -1,5 +1,5 @@
|
||||
package test
|
||||
|
||||
public open class ConstructorWithSeveralParams : java.lang.Object {
|
||||
public open class ConstructorWithSeveralParams {
|
||||
public constructor ConstructorWithSeveralParams(/*0*/ integer: kotlin.Int, /*1*/ intField: kotlin.Int, /*2*/ collection: java.util.ArrayList<kotlin.String>)
|
||||
}
|
||||
|
||||
+1
-1
@@ -1,4 +1,4 @@
|
||||
package test
|
||||
|
||||
public open class ConstructorWithoutParams() : java.lang.Object() {
|
||||
public open class ConstructorWithoutParams() {
|
||||
}
|
||||
|
||||
+1
-1
@@ -1,5 +1,5 @@
|
||||
package test
|
||||
|
||||
public open class ConstructorWithoutParams : java.lang.Object {
|
||||
public open class ConstructorWithoutParams {
|
||||
public constructor ConstructorWithoutParams()
|
||||
}
|
||||
|
||||
+1
-1
@@ -2,6 +2,6 @@ package test
|
||||
|
||||
import java.util.*
|
||||
|
||||
public open class CustomProjectionKind : Object() {
|
||||
public open class CustomProjectionKind {
|
||||
public open fun foo() : MutableList<out Number> = throw UnsupportedOperationException()
|
||||
}
|
||||
|
||||
+1
-1
@@ -1,6 +1,6 @@
|
||||
package test
|
||||
|
||||
public open class CustomProjectionKind : java.lang.Object {
|
||||
public open class CustomProjectionKind {
|
||||
public constructor CustomProjectionKind()
|
||||
public open fun foo(): kotlin.MutableList<out kotlin.Number>
|
||||
}
|
||||
|
||||
+1
-1
@@ -2,7 +2,7 @@ package test
|
||||
|
||||
import java.util.*
|
||||
|
||||
public open class MethodWithFunctionTypes : Object() {
|
||||
public open class MethodWithFunctionTypes {
|
||||
public open fun foo(f : (String?) -> String) : (String.() -> String?)? {
|
||||
throw UnsupportedOperationException()
|
||||
}
|
||||
|
||||
+1
-1
@@ -1,6 +1,6 @@
|
||||
package test
|
||||
|
||||
public open class MethodWithFunctionTypes : java.lang.Object {
|
||||
public open class MethodWithFunctionTypes {
|
||||
public constructor MethodWithFunctionTypes()
|
||||
public open fun foo(/*0*/ f: (kotlin.String?) -> kotlin.String): (kotlin.String.() -> kotlin.String?)?
|
||||
}
|
||||
|
||||
+1
-1
@@ -2,6 +2,6 @@ package test
|
||||
|
||||
import java.util.*
|
||||
|
||||
public open class MethodWithGenerics : Object() {
|
||||
public open class MethodWithGenerics {
|
||||
public open fun foo(a : String, b : List<Map.Entry<String?, String>?>) : String = ""
|
||||
}
|
||||
|
||||
+1
-1
@@ -1,6 +1,6 @@
|
||||
package test
|
||||
|
||||
public open class MethodWithGenerics : java.lang.Object {
|
||||
public open class MethodWithGenerics {
|
||||
public constructor MethodWithGenerics()
|
||||
public open fun foo(/*0*/ a: kotlin.String, /*1*/ b: kotlin.List<kotlin.Map.Entry<kotlin.String?, kotlin.String>?>): kotlin.String
|
||||
}
|
||||
|
||||
+1
-1
@@ -2,6 +2,6 @@ package test
|
||||
|
||||
import java.util.*
|
||||
|
||||
public open class MethodWithMappedClasses : Object() {
|
||||
public open class MethodWithMappedClasses {
|
||||
public open fun <T> copy(dest : MutableList<in T>, src : List<T>) {}
|
||||
}
|
||||
|
||||
+1
-1
@@ -1,6 +1,6 @@
|
||||
package test
|
||||
|
||||
public open class MethodWithMappedClasses : java.lang.Object {
|
||||
public open class MethodWithMappedClasses {
|
||||
public constructor MethodWithMappedClasses()
|
||||
public open fun </*0*/ T> copy(/*0*/ dest: kotlin.MutableList<in T>, /*1*/ src: kotlin.List<T>): kotlin.Unit
|
||||
}
|
||||
|
||||
+1
-1
@@ -2,7 +2,7 @@ package test
|
||||
|
||||
import java.util.*
|
||||
|
||||
public open class MethodWithTypeParameters : Object() {
|
||||
public open class MethodWithTypeParameters {
|
||||
public open fun <A, B : Runnable> foo(a : A, b : List<B>, c: MutableList<in String?>) where B : List<Cloneable> {
|
||||
}
|
||||
}
|
||||
|
||||
+1
-1
@@ -1,6 +1,6 @@
|
||||
package test
|
||||
|
||||
public open class MethodWithTypeParameters : java.lang.Object {
|
||||
public open class MethodWithTypeParameters {
|
||||
public constructor MethodWithTypeParameters()
|
||||
public open fun </*0*/ A, /*1*/ B : java.lang.Runnable> foo(/*0*/ a: A, /*1*/ b: kotlin.List<B>, /*2*/ c: kotlin.MutableList<in kotlin.String?>): kotlin.Unit where B : kotlin.List<java.lang.Cloneable>
|
||||
}
|
||||
|
||||
+1
-1
@@ -2,7 +2,7 @@ package test
|
||||
|
||||
import java.util.*
|
||||
|
||||
public open class MethodWithVararg : Object() {
|
||||
public open class MethodWithVararg {
|
||||
public open fun foo(vararg s : String) {
|
||||
throw UnsupportedOperationException()
|
||||
}
|
||||
|
||||
+1
-1
@@ -1,6 +1,6 @@
|
||||
package test
|
||||
|
||||
public open class MethodWithVararg : java.lang.Object {
|
||||
public open class MethodWithVararg {
|
||||
public constructor MethodWithVararg()
|
||||
public open fun foo(/*0*/ vararg s: kotlin.String /*kotlin.Array<kotlin.String>*/): kotlin.Unit
|
||||
}
|
||||
|
||||
+1
-1
@@ -2,7 +2,7 @@ package test
|
||||
|
||||
import java.util.*
|
||||
|
||||
public open class PropertyArrayTypes<T>() : java.lang.Object() {
|
||||
public open class PropertyArrayTypes<T>() {
|
||||
public var arrayOfArrays : Array<Array<String>> = null!!
|
||||
public var array : Array<String> = null!!
|
||||
public var genericArray : Array<T> = null!!
|
||||
|
||||
+1
-1
@@ -1,6 +1,6 @@
|
||||
package test
|
||||
|
||||
public open class PropertyArrayTypes</*0*/ T> : java.lang.Object {
|
||||
public open class PropertyArrayTypes</*0*/ T> {
|
||||
public constructor PropertyArrayTypes</*0*/ T>()
|
||||
public final var array: kotlin.Array<kotlin.String>
|
||||
public final var arrayOfArrays: kotlin.Array<kotlin.Array<kotlin.String>>
|
||||
|
||||
+1
-1
@@ -2,7 +2,7 @@ package test
|
||||
|
||||
import java.util.*
|
||||
|
||||
public open class PropertyComplexTypes<T>() : java.lang.Object() {
|
||||
public open class PropertyComplexTypes<T>() {
|
||||
public var genericType : T = null!!
|
||||
public var listDefinedGeneric : ArrayList<String> = null!!
|
||||
public var listGeneric : ArrayList<T> = null!!
|
||||
|
||||
+1
-1
@@ -1,6 +1,6 @@
|
||||
package test
|
||||
|
||||
public open class PropertyComplexTypes</*0*/ T> : java.lang.Object {
|
||||
public open class PropertyComplexTypes</*0*/ T> {
|
||||
public constructor PropertyComplexTypes</*0*/ T>()
|
||||
public final var genericType: T
|
||||
public final var listDefinedGeneric: java.util.ArrayList<kotlin.String>
|
||||
|
||||
+1
-1
@@ -2,7 +2,7 @@ package test
|
||||
|
||||
import java.util.*
|
||||
|
||||
public open class PropertySimpleType : java.lang.Object() {
|
||||
public open class PropertySimpleType {
|
||||
public var fieldOne : String = ""
|
||||
public var fieldTwo : String? = null
|
||||
}
|
||||
|
||||
+1
-1
@@ -1,6 +1,6 @@
|
||||
package test
|
||||
|
||||
public open class PropertySimpleType : java.lang.Object {
|
||||
public open class PropertySimpleType {
|
||||
public constructor PropertySimpleType()
|
||||
public final var fieldOne: kotlin.String
|
||||
public final var fieldTwo: kotlin.String?
|
||||
|
||||
+2
-2
@@ -1,7 +1,7 @@
|
||||
package test
|
||||
|
||||
public final class StarProjection: Object() {
|
||||
public final class StarProjection {
|
||||
public final fun foo(): MyClass<*> = throw UnsupportedOperationException()
|
||||
|
||||
public trait MyClass<T: CharSequence?>: Object
|
||||
public trait MyClass<T: CharSequence?>
|
||||
}
|
||||
|
||||
+3
-3
@@ -1,9 +1,9 @@
|
||||
package test
|
||||
|
||||
public final class StarProjection : java.lang.Object {
|
||||
public final class StarProjection {
|
||||
public constructor StarProjection()
|
||||
public final fun foo(): test.StarProjection.MyClass<out kotlin.CharSequence?>
|
||||
|
||||
public trait MyClass</*0*/ T : kotlin.CharSequence?> : java.lang.Object {
|
||||
|
||||
public trait MyClass</*0*/ T : kotlin.CharSequence?> {
|
||||
}
|
||||
}
|
||||
|
||||
+1
-1
@@ -2,7 +2,7 @@ package test
|
||||
|
||||
import java.util.*
|
||||
|
||||
public open class AddingNullability : Object() {
|
||||
public open class AddingNullability {
|
||||
public open fun foo() : Int {
|
||||
throw UnsupportedOperationException()
|
||||
}
|
||||
|
||||
+1
-1
@@ -1,6 +1,6 @@
|
||||
package test
|
||||
|
||||
public open class AddingNullability : java.lang.Object {
|
||||
public open class AddingNullability {
|
||||
public constructor AddingNullability()
|
||||
public open fun foo(): kotlin.Int
|
||||
}
|
||||
|
||||
+1
-1
@@ -1,6 +1,6 @@
|
||||
package test
|
||||
|
||||
public open class ConflictingProjectionKind : Object() {
|
||||
public open class ConflictingProjectionKind {
|
||||
public open fun foo(p0: List<Number>?) {
|
||||
throw UnsupportedOperationException()
|
||||
}
|
||||
|
||||
+1
-1
@@ -1,6 +1,6 @@
|
||||
package test
|
||||
|
||||
public open class ConflictingProjectionKind : java.lang.Object {
|
||||
public open class ConflictingProjectionKind {
|
||||
public constructor ConflictingProjectionKind()
|
||||
public open fun foo(/*0*/ p0: kotlin.List<kotlin.Number>?): kotlin.Unit
|
||||
}
|
||||
|
||||
+1
-1
@@ -2,6 +2,6 @@ package test
|
||||
|
||||
import java.util.*
|
||||
|
||||
public open class ExplicitFieldGettersAndSetters : Object() {
|
||||
public open class ExplicitFieldGettersAndSetters {
|
||||
public var foo : String? = ""
|
||||
}
|
||||
|
||||
+1
-1
@@ -1,6 +1,6 @@
|
||||
package test
|
||||
|
||||
public open class ExplicitFieldGettersAndSetters : java.lang.Object {
|
||||
public open class ExplicitFieldGettersAndSetters {
|
||||
public constructor ExplicitFieldGettersAndSetters()
|
||||
public final var foo: kotlin.String?
|
||||
}
|
||||
|
||||
+1
-1
@@ -2,7 +2,7 @@ package test
|
||||
|
||||
import java.util.*
|
||||
|
||||
public open class ExtraUpperBound : Object() {
|
||||
public open class ExtraUpperBound {
|
||||
public open fun <A : Runnable?> foo() : String? {
|
||||
throw UnsupportedOperationException()
|
||||
}
|
||||
|
||||
+1
-1
@@ -1,6 +1,6 @@
|
||||
package test
|
||||
|
||||
public open class ExtraUpperBound : java.lang.Object {
|
||||
public open class ExtraUpperBound {
|
||||
public constructor ExtraUpperBound()
|
||||
public open fun </*0*/ A : java.lang.Runnable?> foo(): kotlin.String?
|
||||
}
|
||||
|
||||
+1
-1
@@ -2,7 +2,7 @@ package test
|
||||
|
||||
import java.util.*
|
||||
|
||||
public open class MissingUpperBound : Object() {
|
||||
public open class MissingUpperBound {
|
||||
public open fun <A : Runnable?> foo() : String? where A : Cloneable? {
|
||||
throw UnsupportedOperationException()
|
||||
}
|
||||
|
||||
+1
-1
@@ -1,6 +1,6 @@
|
||||
package test
|
||||
|
||||
public open class MissingUpperBound : java.lang.Object {
|
||||
public open class MissingUpperBound {
|
||||
public constructor MissingUpperBound()
|
||||
public open fun </*0*/ A : java.lang.Runnable?> foo(): kotlin.String? where A : java.lang.Cloneable?
|
||||
}
|
||||
|
||||
+1
-1
@@ -2,6 +2,6 @@ package test
|
||||
|
||||
import java.util.*
|
||||
|
||||
public open class NoFieldTypeRef : Object() {
|
||||
public open class NoFieldTypeRef {
|
||||
public var foo : String? = ""
|
||||
}
|
||||
|
||||
+1
-1
@@ -1,6 +1,6 @@
|
||||
package test
|
||||
|
||||
public open class NoFieldTypeRef : java.lang.Object {
|
||||
public open class NoFieldTypeRef {
|
||||
public constructor NoFieldTypeRef()
|
||||
public final var foo: kotlin.String?
|
||||
}
|
||||
|
||||
+1
-1
@@ -2,7 +2,7 @@ package test
|
||||
|
||||
import java.util.*
|
||||
|
||||
public open class NotVarargReplacedWithVararg : Object() {
|
||||
public open class NotVarargReplacedWithVararg {
|
||||
public open fun foo(p0 : String?) {
|
||||
throw UnsupportedOperationException()
|
||||
}
|
||||
|
||||
+1
-1
@@ -1,6 +1,6 @@
|
||||
package test
|
||||
|
||||
public open class NotVarargReplacedWithVararg : java.lang.Object {
|
||||
public open class NotVarargReplacedWithVararg {
|
||||
public constructor NotVarargReplacedWithVararg()
|
||||
public open fun foo(/*0*/ p0: kotlin.String?): kotlin.Unit
|
||||
}
|
||||
|
||||
+1
-1
@@ -1,6 +1,6 @@
|
||||
package test
|
||||
|
||||
public open class RedundantProjectionKind : Object() {
|
||||
public open class RedundantProjectionKind {
|
||||
public open fun foo(list: List<Number>) {
|
||||
throw UnsupportedOperationException()
|
||||
}
|
||||
|
||||
+1
-1
@@ -1,6 +1,6 @@
|
||||
package test
|
||||
|
||||
public open class RedundantProjectionKind : java.lang.Object {
|
||||
public open class RedundantProjectionKind {
|
||||
public constructor RedundantProjectionKind()
|
||||
public open fun foo(/*0*/ list: kotlin.List<kotlin.Number>): kotlin.Unit
|
||||
}
|
||||
|
||||
+1
-1
@@ -2,7 +2,7 @@ package test
|
||||
|
||||
import java.util.*
|
||||
|
||||
public open class ReturnTypeMissing : Object() {
|
||||
public open class ReturnTypeMissing {
|
||||
public open fun foo(p0 : String?) : Int {
|
||||
throw UnsupportedOperationException()
|
||||
}
|
||||
|
||||
+1
-1
@@ -1,6 +1,6 @@
|
||||
package test
|
||||
|
||||
public open class ReturnTypeMissing : java.lang.Object {
|
||||
public open class ReturnTypeMissing {
|
||||
public constructor ReturnTypeMissing()
|
||||
public open fun foo(/*0*/ p0: kotlin.String?): kotlin.Int
|
||||
}
|
||||
|
||||
+1
-1
@@ -2,7 +2,7 @@ package test
|
||||
|
||||
import java.util.*
|
||||
|
||||
public open class SyntaxError : Object() {
|
||||
public open class SyntaxError {
|
||||
public open fun foo() : Int? {
|
||||
throw UnsupportedOperationException()
|
||||
}
|
||||
|
||||
+1
-1
@@ -1,6 +1,6 @@
|
||||
package test
|
||||
|
||||
public open class SyntaxError : java.lang.Object {
|
||||
public open class SyntaxError {
|
||||
public constructor SyntaxError()
|
||||
public open fun foo(): kotlin.Int?
|
||||
}
|
||||
|
||||
+1
-1
@@ -2,6 +2,6 @@ package test
|
||||
|
||||
import java.util.*
|
||||
|
||||
public open class SyntaxErrorInFieldAnnotation : Object() {
|
||||
public open class SyntaxErrorInFieldAnnotation {
|
||||
public var foo : String? = ""
|
||||
}
|
||||
|
||||
+1
-1
@@ -1,6 +1,6 @@
|
||||
package test
|
||||
|
||||
public open class SyntaxErrorInFieldAnnotation : java.lang.Object {
|
||||
public open class SyntaxErrorInFieldAnnotation {
|
||||
public constructor SyntaxErrorInFieldAnnotation()
|
||||
public final var foo: kotlin.String?
|
||||
}
|
||||
|
||||
+1
-1
@@ -2,7 +2,7 @@ package test
|
||||
|
||||
import java.util.*
|
||||
|
||||
public open class VarargReplacedWithNotVararg : Object() {
|
||||
public open class VarargReplacedWithNotVararg {
|
||||
public open fun foo(vararg p0 : String?) {
|
||||
throw UnsupportedOperationException()
|
||||
}
|
||||
|
||||
+1
-1
@@ -1,6 +1,6 @@
|
||||
package test
|
||||
|
||||
public open class VarargReplacedWithNotVararg : java.lang.Object {
|
||||
public open class VarargReplacedWithNotVararg {
|
||||
public constructor VarargReplacedWithNotVararg()
|
||||
public open fun foo(/*0*/ vararg p0: kotlin.String? /*kotlin.Array<kotlin.String?>*/): kotlin.Unit
|
||||
}
|
||||
|
||||
+1
-1
@@ -2,6 +2,6 @@ package test
|
||||
|
||||
import java.util.*
|
||||
|
||||
public open class WrongFieldInitializer : Object() {
|
||||
public open class WrongFieldInitializer {
|
||||
public var foo : String? = ""
|
||||
}
|
||||
|
||||
+1
-1
@@ -1,6 +1,6 @@
|
||||
package test
|
||||
|
||||
public open class WrongFieldInitializer : java.lang.Object {
|
||||
public open class WrongFieldInitializer {
|
||||
public constructor WrongFieldInitializer()
|
||||
public final var foo: kotlin.String?
|
||||
}
|
||||
|
||||
+1
-1
@@ -3,7 +3,7 @@ package test
|
||||
|
||||
import java.util.*
|
||||
|
||||
public open class WrongFieldMutability : Object() {
|
||||
public open class WrongFieldMutability {
|
||||
public var fooNotFinal : String? = ""
|
||||
public val fooFinal : String? = "Test"
|
||||
}
|
||||
|
||||
+1
-1
@@ -1,6 +1,6 @@
|
||||
package test
|
||||
|
||||
public open class WrongFieldMutability : java.lang.Object {
|
||||
public open class WrongFieldMutability {
|
||||
public constructor WrongFieldMutability()
|
||||
public final val fooFinal: kotlin.String? = "Test"
|
||||
public final var fooNotFinal: kotlin.String?
|
||||
|
||||
+1
-1
@@ -2,6 +2,6 @@ package test
|
||||
|
||||
import java.util.*
|
||||
|
||||
public open class WrongFieldName : Object() {
|
||||
public open class WrongFieldName {
|
||||
public var foo : String? = ""
|
||||
}
|
||||
|
||||
+1
-1
@@ -1,6 +1,6 @@
|
||||
package test
|
||||
|
||||
public open class WrongFieldName : java.lang.Object {
|
||||
public open class WrongFieldName {
|
||||
public constructor WrongFieldName()
|
||||
public final var foo: kotlin.String?
|
||||
}
|
||||
|
||||
+1
-1
@@ -2,6 +2,6 @@ package test
|
||||
|
||||
import java.util.*
|
||||
|
||||
public open class WrongMethodName : Object() {
|
||||
public open class WrongMethodName {
|
||||
public open fun foo() : String? = ""
|
||||
}
|
||||
|
||||
+1
-1
@@ -1,6 +1,6 @@
|
||||
package test
|
||||
|
||||
public open class WrongMethodName : java.lang.Object {
|
||||
public open class WrongMethodName {
|
||||
public constructor WrongMethodName()
|
||||
public open fun foo(): kotlin.String?
|
||||
}
|
||||
|
||||
+1
-1
@@ -2,7 +2,7 @@ package test
|
||||
|
||||
import java.util.*
|
||||
|
||||
public open class WrongProjectionKind : Object() {
|
||||
public open class WrongProjectionKind {
|
||||
public open fun copy(p0 : Array<out Number>?, p1 : Array<out Number>?) : MutableList<Number>? {
|
||||
throw UnsupportedOperationException()
|
||||
}
|
||||
|
||||
+1
-1
@@ -1,6 +1,6 @@
|
||||
package test
|
||||
|
||||
public open class WrongProjectionKind : java.lang.Object {
|
||||
public open class WrongProjectionKind {
|
||||
public constructor WrongProjectionKind()
|
||||
public open fun copy(/*0*/ p0: kotlin.Array<out kotlin.Number>?, /*1*/ p1: kotlin.Array<out kotlin.Number>?): kotlin.MutableList<kotlin.Number>?
|
||||
}
|
||||
|
||||
+1
-1
@@ -2,6 +2,6 @@ package test
|
||||
|
||||
import java.util.*
|
||||
|
||||
public open class WrongReturnTypeStructure : Object() {
|
||||
public open class WrongReturnTypeStructure {
|
||||
public open fun foo(p0 : String?, p1 : List<Map.Entry<String, String>>?) : String? = ""
|
||||
}
|
||||
|
||||
+1
-1
@@ -1,6 +1,6 @@
|
||||
package test
|
||||
|
||||
public open class WrongReturnTypeStructure : java.lang.Object {
|
||||
public open class WrongReturnTypeStructure {
|
||||
public constructor WrongReturnTypeStructure()
|
||||
public open fun foo(/*0*/ p0: kotlin.String?, /*1*/ p1: kotlin.List<kotlin.Map.Entry<kotlin.String, kotlin.String>>?): kotlin.String?
|
||||
}
|
||||
|
||||
+1
-1
@@ -2,6 +2,6 @@ package test
|
||||
|
||||
import java.util.*
|
||||
|
||||
public open class WrongTypeName1 : Object() {
|
||||
public open class WrongTypeName1 {
|
||||
public open fun foo(p0 : String?) : String? = ""
|
||||
}
|
||||
|
||||
+1
-1
@@ -1,6 +1,6 @@
|
||||
package test
|
||||
|
||||
public open class WrongTypeName1 : java.lang.Object {
|
||||
public open class WrongTypeName1 {
|
||||
public constructor WrongTypeName1()
|
||||
public open fun foo(/*0*/ p0: kotlin.String?): kotlin.String?
|
||||
}
|
||||
|
||||
+1
-1
@@ -2,6 +2,6 @@ package test
|
||||
|
||||
import java.util.*
|
||||
|
||||
public open class WrongTypeName2 : Object() {
|
||||
public open class WrongTypeName2 {
|
||||
public open fun foo(p0 : String?) : String? = ""
|
||||
}
|
||||
|
||||
+1
-1
@@ -1,6 +1,6 @@
|
||||
package test
|
||||
|
||||
public open class WrongTypeName2 : java.lang.Object {
|
||||
public open class WrongTypeName2 {
|
||||
public constructor WrongTypeName2()
|
||||
public open fun foo(/*0*/ p0: kotlin.String?): kotlin.String?
|
||||
}
|
||||
|
||||
+1
-1
@@ -2,6 +2,6 @@ package test
|
||||
|
||||
import java.util.*
|
||||
|
||||
public open class WrongTypeName3 : Object() {
|
||||
public open class WrongTypeName3 {
|
||||
public open fun foo(p0 : String?) : String? = ""
|
||||
}
|
||||
|
||||
+1
-1
@@ -1,6 +1,6 @@
|
||||
package test
|
||||
|
||||
public open class WrongTypeName3 : java.lang.Object {
|
||||
public open class WrongTypeName3 {
|
||||
public constructor WrongTypeName3()
|
||||
public open fun foo(/*0*/ p0: kotlin.String?): kotlin.String?
|
||||
}
|
||||
|
||||
+1
-1
@@ -2,7 +2,7 @@ package test
|
||||
|
||||
import java.util.*
|
||||
|
||||
public open class WrongTypeParameterBoundStructure1 : Object() {
|
||||
public open class WrongTypeParameterBoundStructure1 {
|
||||
public open fun <A, B : Runnable?> foo(p0 : A?, p1 : List<B>?) where B : List<Cloneable>? {
|
||||
}
|
||||
}
|
||||
|
||||
+1
-1
@@ -1,6 +1,6 @@
|
||||
package test
|
||||
|
||||
public open class WrongTypeParameterBoundStructure1 : java.lang.Object {
|
||||
public open class WrongTypeParameterBoundStructure1 {
|
||||
public constructor WrongTypeParameterBoundStructure1()
|
||||
public open fun </*0*/ A, /*1*/ B : java.lang.Runnable?> foo(/*0*/ p0: A?, /*1*/ p1: kotlin.List<B>?): kotlin.Unit where B : kotlin.List<java.lang.Cloneable>?
|
||||
}
|
||||
|
||||
+1
-1
@@ -2,7 +2,7 @@ package test
|
||||
|
||||
import java.util.*
|
||||
|
||||
public open class WrongTypeParameterBoundStructure2 : Object() {
|
||||
public open class WrongTypeParameterBoundStructure2 {
|
||||
public open fun <A, B : Runnable?> foo(p0 : A?, p1 : List<B>?) where B : List<Cloneable>? {
|
||||
}
|
||||
}
|
||||
|
||||
+1
-1
@@ -1,6 +1,6 @@
|
||||
package test
|
||||
|
||||
public open class WrongTypeParameterBoundStructure2 : java.lang.Object {
|
||||
public open class WrongTypeParameterBoundStructure2 {
|
||||
public constructor WrongTypeParameterBoundStructure2()
|
||||
public open fun </*0*/ A, /*1*/ B : java.lang.Runnable?> foo(/*0*/ p0: A?, /*1*/ p1: kotlin.List<B>?): kotlin.Unit where B : kotlin.List<java.lang.Cloneable>?
|
||||
}
|
||||
|
||||
+1
-1
@@ -2,7 +2,7 @@ package test
|
||||
|
||||
import java.util.*
|
||||
|
||||
public open class WrongTypeParametersCount : Object() {
|
||||
public open class WrongTypeParametersCount {
|
||||
public open fun <A, B> foo(p0 : A?, p1 : List<B>?) {
|
||||
}
|
||||
}
|
||||
|
||||
+1
-1
@@ -1,6 +1,6 @@
|
||||
package test
|
||||
|
||||
public open class WrongTypeParametersCount : java.lang.Object {
|
||||
public open class WrongTypeParametersCount {
|
||||
public constructor WrongTypeParametersCount()
|
||||
public open fun </*0*/ A, /*1*/ B> foo(/*0*/ p0: A?, /*1*/ p1: kotlin.List<B>?): kotlin.Unit
|
||||
}
|
||||
|
||||
+1
-1
@@ -2,6 +2,6 @@ package test
|
||||
|
||||
import java.util.*
|
||||
|
||||
public open class WrongValueParameterStructure1 : Object() {
|
||||
public open class WrongValueParameterStructure1 {
|
||||
public open fun foo(p0 : String?, p1 : List<Map.Entry<String, String>>?) : String? = ""
|
||||
}
|
||||
|
||||
+1
-1
@@ -1,6 +1,6 @@
|
||||
package test
|
||||
|
||||
public open class WrongValueParameterStructure1 : java.lang.Object {
|
||||
public open class WrongValueParameterStructure1 {
|
||||
public constructor WrongValueParameterStructure1()
|
||||
public open fun foo(/*0*/ p0: kotlin.String?, /*1*/ p1: kotlin.List<kotlin.Map.Entry<kotlin.String, kotlin.String>>?): kotlin.String?
|
||||
}
|
||||
|
||||
+1
-1
@@ -2,6 +2,6 @@ package test
|
||||
|
||||
import java.util.*
|
||||
|
||||
public open class WrongValueParameterStructure2 : Object() {
|
||||
public open class WrongValueParameterStructure2 {
|
||||
public open fun foo(p0 : String?, p1 : List<Map.Entry<String, String>>?) : String? = ""
|
||||
}
|
||||
|
||||
+1
-1
@@ -1,6 +1,6 @@
|
||||
package test
|
||||
|
||||
public open class WrongValueParameterStructure2 : java.lang.Object {
|
||||
public open class WrongValueParameterStructure2 {
|
||||
public constructor WrongValueParameterStructure2()
|
||||
public open fun foo(/*0*/ p0: kotlin.String?, /*1*/ p1: kotlin.List<kotlin.Map.Entry<kotlin.String, kotlin.String>>?): kotlin.String?
|
||||
}
|
||||
|
||||
+1
-1
@@ -2,7 +2,7 @@ package test
|
||||
|
||||
import java.util.*
|
||||
|
||||
public open class WrongValueParametersCount : Object() {
|
||||
public open class WrongValueParametersCount {
|
||||
public open fun foo() : Int? {
|
||||
throw UnsupportedOperationException()
|
||||
}
|
||||
|
||||
+1
-1
@@ -1,6 +1,6 @@
|
||||
package test
|
||||
|
||||
public open class WrongValueParametersCount : java.lang.Object {
|
||||
public open class WrongValueParametersCount {
|
||||
public constructor WrongValueParametersCount()
|
||||
public open fun foo(): kotlin.Int?
|
||||
}
|
||||
|
||||
+2
-2
@@ -1,8 +1,8 @@
|
||||
package test
|
||||
|
||||
public trait PropagateTypeArgumentNullable: Object {
|
||||
public trait PropagateTypeArgumentNullable {
|
||||
|
||||
public trait Super: Object {
|
||||
public trait Super {
|
||||
public fun outS(p: List<String?>)
|
||||
|
||||
public fun invOutS(p : MutableList<List<String?>>)
|
||||
|
||||
+4
-4
@@ -1,7 +1,7 @@
|
||||
package test
|
||||
|
||||
public trait PropagateTypeArgumentNullable : java.lang.Object {
|
||||
|
||||
public trait PropagateTypeArgumentNullable {
|
||||
|
||||
public trait Sub : test.PropagateTypeArgumentNullable.Super {
|
||||
public abstract override /*1*/ fun invOutR(): kotlin.MutableList<kotlin.List<kotlin.String?>>
|
||||
public abstract override /*1*/ fun invOutS(/*0*/ p: kotlin.MutableList<kotlin.List<kotlin.String?>>): kotlin.Unit
|
||||
@@ -10,8 +10,8 @@ public trait PropagateTypeArgumentNullable : java.lang.Object {
|
||||
public abstract override /*1*/ fun outR(): kotlin.List<kotlin.String?>
|
||||
public abstract override /*1*/ fun outS(/*0*/ p: kotlin.List<kotlin.String?>): kotlin.Unit
|
||||
}
|
||||
|
||||
public trait Super : java.lang.Object {
|
||||
|
||||
public trait Super {
|
||||
public abstract fun invOutR(): kotlin.MutableList<kotlin.List<kotlin.String?>>
|
||||
public abstract fun invOutS(/*0*/ p: kotlin.MutableList<kotlin.List<kotlin.String?>>): kotlin.Unit
|
||||
public abstract fun invR(): kotlin.MutableList<kotlin.String?>
|
||||
|
||||
+2
-2
@@ -1,8 +1,8 @@
|
||||
package test
|
||||
|
||||
public trait ChangeProjectionKind1: Object {
|
||||
public trait ChangeProjectionKind1 {
|
||||
|
||||
public trait Super: Object {
|
||||
public trait Super {
|
||||
public fun foo(p: MutableList<in String>)
|
||||
|
||||
public fun dummy() // to avoid loading as SAM interface
|
||||
|
||||
+4
-4
@@ -1,13 +1,13 @@
|
||||
package test
|
||||
|
||||
public trait ChangeProjectionKind1 : java.lang.Object {
|
||||
|
||||
public trait ChangeProjectionKind1 {
|
||||
|
||||
public trait Sub : test.ChangeProjectionKind1.Super {
|
||||
public abstract override /*1*/ /*fake_override*/ fun dummy(): kotlin.Unit
|
||||
public abstract override /*1*/ fun foo(/*0*/ p: kotlin.MutableList<in kotlin.String>): kotlin.Unit
|
||||
}
|
||||
|
||||
public trait Super : java.lang.Object {
|
||||
|
||||
public trait Super {
|
||||
public abstract fun dummy(): kotlin.Unit
|
||||
public abstract fun foo(/*0*/ p: kotlin.MutableList<in kotlin.String>): kotlin.Unit
|
||||
}
|
||||
|
||||
+2
-2
@@ -1,8 +1,8 @@
|
||||
package test
|
||||
|
||||
public trait ChangeProjectionKind2: Object {
|
||||
public trait ChangeProjectionKind2 {
|
||||
|
||||
public trait Super: Object {
|
||||
public trait Super {
|
||||
public fun foo(p: MutableList<String>)
|
||||
|
||||
public fun dummy() // to avoid loading as SAM interface
|
||||
|
||||
+4
-4
@@ -1,13 +1,13 @@
|
||||
package test
|
||||
|
||||
public trait ChangeProjectionKind2 : java.lang.Object {
|
||||
|
||||
public trait ChangeProjectionKind2 {
|
||||
|
||||
public trait Sub : test.ChangeProjectionKind2.Super {
|
||||
public abstract override /*1*/ /*fake_override*/ fun dummy(): kotlin.Unit
|
||||
public abstract override /*1*/ fun foo(/*0*/ p: kotlin.MutableList<kotlin.String>): kotlin.Unit
|
||||
}
|
||||
|
||||
public trait Super : java.lang.Object {
|
||||
|
||||
public trait Super {
|
||||
public abstract fun dummy(): kotlin.Unit
|
||||
public abstract fun foo(/*0*/ p: kotlin.MutableList<kotlin.String>): kotlin.Unit
|
||||
}
|
||||
|
||||
+2
-2
@@ -1,8 +1,8 @@
|
||||
package test
|
||||
|
||||
public trait DeeplySubstitutedClassParameter: Object {
|
||||
public trait DeeplySubstitutedClassParameter {
|
||||
|
||||
public trait Super<T>: Object {
|
||||
public trait Super<T> {
|
||||
public fun foo(t: T)
|
||||
|
||||
public fun dummy() // to avoid loading as SAM interface
|
||||
|
||||
+5
-5
@@ -1,18 +1,18 @@
|
||||
package test
|
||||
|
||||
public trait DeeplySubstitutedClassParameter : java.lang.Object {
|
||||
|
||||
public trait DeeplySubstitutedClassParameter {
|
||||
|
||||
public trait Middle</*0*/ E> : test.DeeplySubstitutedClassParameter.Super<E> {
|
||||
public abstract override /*1*/ /*fake_override*/ fun dummy(): kotlin.Unit
|
||||
public abstract override /*1*/ fun foo(/*0*/ t: E): kotlin.Unit
|
||||
}
|
||||
|
||||
|
||||
public trait Sub : test.DeeplySubstitutedClassParameter.Middle<kotlin.String> {
|
||||
public abstract override /*1*/ /*fake_override*/ fun dummy(): kotlin.Unit
|
||||
public abstract override /*1*/ fun foo(/*0*/ t: kotlin.String): kotlin.Unit
|
||||
}
|
||||
|
||||
public trait Super</*0*/ T> : java.lang.Object {
|
||||
|
||||
public trait Super</*0*/ T> {
|
||||
public abstract fun dummy(): kotlin.Unit
|
||||
public abstract fun foo(/*0*/ t: T): kotlin.Unit
|
||||
}
|
||||
|
||||
+2
-2
@@ -1,8 +1,8 @@
|
||||
package test
|
||||
|
||||
public trait DeeplySubstitutedClassParameter2: Object {
|
||||
public trait DeeplySubstitutedClassParameter2 {
|
||||
|
||||
public trait Super<T>: Object {
|
||||
public trait Super<T> {
|
||||
public fun foo(t: T)
|
||||
|
||||
public fun dummy() // to avoid loading as SAM interface
|
||||
|
||||
+5
-5
@@ -1,18 +1,18 @@
|
||||
package test
|
||||
|
||||
public trait DeeplySubstitutedClassParameter2 : java.lang.Object {
|
||||
|
||||
public trait DeeplySubstitutedClassParameter2 {
|
||||
|
||||
public trait Middle</*0*/ E> : test.DeeplySubstitutedClassParameter2.Super<E> {
|
||||
public abstract override /*1*/ /*fake_override*/ fun dummy(): kotlin.Unit
|
||||
public abstract override /*1*/ /*fake_override*/ fun foo(/*0*/ t: E): kotlin.Unit
|
||||
}
|
||||
|
||||
|
||||
public trait Sub : test.DeeplySubstitutedClassParameter2.Middle<kotlin.String> {
|
||||
public abstract override /*1*/ /*fake_override*/ fun dummy(): kotlin.Unit
|
||||
public abstract override /*1*/ fun foo(/*0*/ t: kotlin.String): kotlin.Unit
|
||||
}
|
||||
|
||||
public trait Super</*0*/ T> : java.lang.Object {
|
||||
|
||||
public trait Super</*0*/ T> {
|
||||
public abstract fun dummy(): kotlin.Unit
|
||||
public abstract fun foo(/*0*/ t: T): kotlin.Unit
|
||||
}
|
||||
|
||||
+2
-2
@@ -1,8 +1,8 @@
|
||||
package test
|
||||
|
||||
public trait InheritMutability: Object {
|
||||
public trait InheritMutability {
|
||||
|
||||
public trait Super: Object {
|
||||
public trait Super {
|
||||
public fun foo(p: MutableList<String>)
|
||||
|
||||
public fun dummy() // to avoid loading as SAM interface
|
||||
|
||||
+4
-4
@@ -1,13 +1,13 @@
|
||||
package test
|
||||
|
||||
public trait InheritMutability : java.lang.Object {
|
||||
|
||||
public trait InheritMutability {
|
||||
|
||||
public trait Sub : test.InheritMutability.Super {
|
||||
public abstract override /*1*/ /*fake_override*/ fun dummy(): kotlin.Unit
|
||||
public abstract override /*1*/ fun foo(/*0*/ p: kotlin.MutableList<kotlin.String>): kotlin.Unit
|
||||
}
|
||||
|
||||
public trait Super : java.lang.Object {
|
||||
|
||||
public trait Super {
|
||||
public abstract fun dummy(): kotlin.Unit
|
||||
public abstract fun foo(/*0*/ p: kotlin.MutableList<kotlin.String>): kotlin.Unit
|
||||
}
|
||||
|
||||
+2
-2
@@ -1,8 +1,8 @@
|
||||
package test
|
||||
|
||||
public trait InheritNotVararg: Object {
|
||||
public trait InheritNotVararg {
|
||||
|
||||
public trait Super: Object {
|
||||
public trait Super {
|
||||
public fun foo(p0: Array<out String>?)
|
||||
|
||||
public fun dummy() // to avoid loading as SAM interface
|
||||
|
||||
+4
-4
@@ -1,13 +1,13 @@
|
||||
package test
|
||||
|
||||
public trait InheritNotVararg : java.lang.Object {
|
||||
|
||||
public trait InheritNotVararg {
|
||||
|
||||
public trait Sub : test.InheritNotVararg.Super {
|
||||
public abstract override /*1*/ /*fake_override*/ fun dummy(): kotlin.Unit
|
||||
public abstract override /*1*/ fun foo(/*0*/ p0: kotlin.Array<out kotlin.String>?): kotlin.Unit
|
||||
}
|
||||
|
||||
public trait Super : java.lang.Object {
|
||||
|
||||
public trait Super {
|
||||
public abstract fun dummy(): kotlin.Unit
|
||||
public abstract fun foo(/*0*/ p0: kotlin.Array<out kotlin.String>?): kotlin.Unit
|
||||
}
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user