FIR: make rendering of type parameters similar to original Kotlin
This commit is contained in:
Vendored
+3
-3
@@ -16,15 +16,15 @@ public final annotation class Ann : R|kotlin/Annotation| {
|
||||
|
||||
}
|
||||
|
||||
<T> public final class Generic : R|kotlin/Any| {
|
||||
public final class Generic<T> : R|kotlin/Any| {
|
||||
public constructor(): R|test/Generic<T>|
|
||||
|
||||
}
|
||||
|
||||
<A, B> public final class InnerGeneric : R|kotlin/Any| {
|
||||
public final class InnerGeneric<A, B> : R|kotlin/Any| {
|
||||
public constructor(): R|test/InnerGeneric<A, B>|
|
||||
|
||||
<C, D> public final inner class Inner : R|kotlin/Any| {
|
||||
public final inner class Inner<C, D> : R|kotlin/Any| {
|
||||
public constructor(): R|test/InnerGeneric.Inner<C, D>|
|
||||
|
||||
}
|
||||
|
||||
+1
-1
@@ -6,7 +6,7 @@ public final annotation class A : R|kotlin/Annotation| {
|
||||
}
|
||||
|
||||
public final class TypeParameterAnnotation : R|kotlin/Any| {
|
||||
<T> public final fun foo(x: R|T|): R|kotlin/Unit|
|
||||
public final fun <T> foo(x: R|T|): R|kotlin/Unit|
|
||||
|
||||
public constructor(): R|test/TypeParameterAnnotation|
|
||||
|
||||
|
||||
+2
-2
@@ -3,7 +3,7 @@ public final annotation class A : R|kotlin/Annotation| {
|
||||
|
||||
}
|
||||
|
||||
<T> public abstract interface Foo : R|java/io/Serializable| {
|
||||
<E, F> public abstract fun bar(): R|kotlin/Unit|
|
||||
public abstract interface Foo<T> : R|java/io/Serializable| {
|
||||
public abstract fun <E, F> bar(): R|kotlin/Unit|
|
||||
|
||||
}
|
||||
|
||||
Vendored
+1
-1
@@ -4,7 +4,7 @@ public final annotation class A : R|kotlin/Annotation| {
|
||||
}
|
||||
|
||||
public final class SimpleTypeParameterAnnotation : R|kotlin/Any| {
|
||||
<T> public final fun foo(x: R|T|): R|kotlin/Unit|
|
||||
public final fun <T> foo(x: R|T|): R|kotlin/Unit|
|
||||
|
||||
public constructor(): R|test/SimpleTypeParameterAnnotation|
|
||||
|
||||
|
||||
+1
-1
@@ -4,7 +4,7 @@ public final annotation class A : R|kotlin/Annotation| {
|
||||
}
|
||||
|
||||
public final class SimpleTypeParameterAnnotation : R|kotlin/Any| {
|
||||
<T> public final fun foo(x: R|T|): R|kotlin/Unit|
|
||||
public final fun <T> foo(x: R|T|): R|kotlin/Unit|
|
||||
|
||||
public constructor(): R|test/SimpleTypeParameterAnnotation|
|
||||
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
<T> public final class Wine : R|kotlin/Any| {
|
||||
public final class Wine<T> : R|kotlin/Any| {
|
||||
public constructor(): R|test/Wine<T>|
|
||||
|
||||
}
|
||||
|
||||
+2
-2
@@ -1,4 +1,4 @@
|
||||
<test> public final class ConstructorTypeParamClassObjectConflict : R|kotlin/Any| {
|
||||
public final class ConstructorTypeParamClassObjectConflict<test> : R|kotlin/Any| {
|
||||
public constructor(): R|test/ConstructorTypeParamClassObjectConflict<test>|
|
||||
|
||||
public final companion object Companion : R|kotlin/Any| {
|
||||
@@ -8,7 +8,7 @@
|
||||
|
||||
}
|
||||
|
||||
<test> public final class ConstructorTypeParamClassObjectTypeConflict : R|kotlin/Any| {
|
||||
public final class ConstructorTypeParamClassObjectTypeConflict<test> : R|kotlin/Any| {
|
||||
public constructor(): R|test/ConstructorTypeParamClassObjectTypeConflict<test>|
|
||||
|
||||
public final companion object Companion : R|kotlin/Any| {
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
<T> public final class Juice : R|kotlin/Any| {
|
||||
public final class Juice<T> : R|kotlin/Any| {
|
||||
public constructor(): R|test/Juice<T>|
|
||||
|
||||
}
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
<T> public final class Beer : R|kotlin/Any| {
|
||||
public final class Beer<T> : R|kotlin/Any| {
|
||||
public constructor(): R|test/Beer<T>|
|
||||
|
||||
}
|
||||
|
||||
+1
-1
@@ -1,4 +1,4 @@
|
||||
<A, B> public final class ClassParamReferencesParam : R|kotlin/Any| {
|
||||
public final class ClassParamReferencesParam<A, B> : R|kotlin/Any| {
|
||||
public constructor(): R|test/ClassParamReferencesParam<A, B>|
|
||||
|
||||
}
|
||||
|
||||
+1
-1
@@ -1,4 +1,4 @@
|
||||
<A, B> public final class ClassParamReferencesParam : R|kotlin/Any| {
|
||||
public final class ClassParamReferencesParam<A, B> : R|kotlin/Any| {
|
||||
public constructor(): R|test/ClassParamReferencesParam<A, B>|
|
||||
|
||||
}
|
||||
|
||||
+2
-2
@@ -1,7 +1,7 @@
|
||||
<A> public final class ClassParamReferencesSelf : R|kotlin/Any| {
|
||||
public final class ClassParamReferencesSelf<A> : R|kotlin/Any| {
|
||||
public constructor(): R|test/ClassParamReferencesSelf<A>|
|
||||
|
||||
}
|
||||
|
||||
<P> public abstract interface TraitWithP : R|kotlin/Any| {
|
||||
public abstract interface TraitWithP<P> : R|kotlin/Any| {
|
||||
}
|
||||
|
||||
+1
-1
@@ -1,4 +1,4 @@
|
||||
<A> public final class Clock : R|kotlin/Any| {
|
||||
public final class Clock<A> : R|kotlin/Any| {
|
||||
public constructor(): R|test/Clock<A>|
|
||||
|
||||
}
|
||||
|
||||
Vendored
+1
-1
@@ -1,4 +1,4 @@
|
||||
<A> public final class Clock : R|kotlin/Any| {
|
||||
public final class Clock<A> : R|kotlin/Any| {
|
||||
public constructor(): R|test/Clock<A>|
|
||||
|
||||
}
|
||||
|
||||
+1
-1
@@ -1,4 +1,4 @@
|
||||
<A> public final class Clock : R|kotlin/Any| {
|
||||
public final class Clock<A> : R|kotlin/Any| {
|
||||
public constructor(): R|test/Clock<A>|
|
||||
|
||||
}
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
<P, Q> public final class ClassTwoParams : R|kotlin/Any| {
|
||||
public final class ClassTwoParams<P, Q> : R|kotlin/Any| {
|
||||
public constructor(): R|test/ClassTwoParams<P, Q>|
|
||||
|
||||
}
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
<P, Q> public final class ClassTwoParams : R|kotlin/Any| {
|
||||
public final class ClassTwoParams<P, Q> : R|kotlin/Any| {
|
||||
public constructor(): R|test/ClassTwoParams<P, Q>|
|
||||
|
||||
}
|
||||
|
||||
+1
-1
@@ -1,4 +1,4 @@
|
||||
<P> public abstract class Aaa : R|kotlin/Any| {
|
||||
public abstract class Aaa<P> : R|kotlin/Any| {
|
||||
public constructor(): R|test/Aaa<P>|
|
||||
|
||||
}
|
||||
|
||||
+1
-1
@@ -1,4 +1,4 @@
|
||||
<T> public abstract interface A : R|kotlin/Any| {
|
||||
public abstract interface A<T> : R|kotlin/Any| {
|
||||
public abstract fun bar(): R|T|
|
||||
|
||||
public open fun foo(): R|T|
|
||||
|
||||
+1
-1
@@ -1,4 +1,4 @@
|
||||
<P> public abstract interface Aaa : R|kotlin/Any| {
|
||||
public abstract interface Aaa<P> : R|kotlin/Any| {
|
||||
}
|
||||
|
||||
public final class Bbb : R|test/Aaa<java/util/Random>| {
|
||||
|
||||
+1
-1
@@ -1,7 +1,7 @@
|
||||
public final class Outer : R|kotlin/Any| {
|
||||
public constructor(): R|test/Outer|
|
||||
|
||||
<T> public final inner class Inner : R|kotlin/Any| {
|
||||
public final inner class Inner<T> : R|kotlin/Any| {
|
||||
public constructor(): R|test/Outer.Inner<T>|
|
||||
|
||||
}
|
||||
|
||||
@@ -1,12 +1,12 @@
|
||||
<E, F> public final class Outer : R|kotlin/Any| {
|
||||
public final class Outer<E, F> : R|kotlin/Any| {
|
||||
public final fun bar(x: R|test/Outer.Inner2<kotlin/String, kotlin/Double>|, y: R|test/Outer.Inner2<E, F>|): R|kotlin/Unit|
|
||||
|
||||
public constructor(): R|test/Outer<E, F>|
|
||||
|
||||
<G, H> public final inner class Inner : R|kotlin/Any| {
|
||||
public final inner class Inner<G, H> : R|kotlin/Any| {
|
||||
public constructor(): R|test/Outer.Inner<G, H>|
|
||||
|
||||
<I> public final inner class Inner3 : R|kotlin/Any| {
|
||||
public final inner class Inner3<I> : R|kotlin/Any| {
|
||||
public final fun foo(x: R|test/Outer.Inner<G, kotlin/Int, kotlin/String, F>|, y: R|test/Outer.Inner<E, kotlin/Double, E, F>|, z: R|test/Outer.Inner.Inner3<kotlin/Double, G, kotlin/Int, kotlin/String, F>|, w: R|test/Outer.Inner.Inner3<*, G, H, E, F>|): R|kotlin/Unit|
|
||||
|
||||
public constructor(): R|test/Outer.Inner.Inner3<I>|
|
||||
|
||||
+1
-1
@@ -1,7 +1,7 @@
|
||||
public final class Outer : R|kotlin/Any| {
|
||||
public constructor(): R|test/Outer|
|
||||
|
||||
<T> public final class Nested : R|kotlin/Any| {
|
||||
public final class Nested<T> : R|kotlin/Any| {
|
||||
public constructor(): R|test/Outer.Nested<T>|
|
||||
|
||||
}
|
||||
|
||||
+1
-1
@@ -1,4 +1,4 @@
|
||||
<R, T> public abstract interface Rec : R|kotlin/Any| {
|
||||
public abstract interface Rec<R, T> : R|kotlin/Any| {
|
||||
public abstract fun t(): R|T|
|
||||
|
||||
}
|
||||
|
||||
Vendored
+1
-1
@@ -1,4 +1,4 @@
|
||||
<P> public open class JavaBeanVarOfGenericType : R|kotlin/Any| {
|
||||
public open class JavaBeanVarOfGenericType<P> : R|kotlin/Any| {
|
||||
public open fun getCharacters(): R|java/util/ArrayList<P>|?
|
||||
|
||||
public open fun setCharacters(p0: R|java/util/ArrayList<P>|?): R|kotlin/Unit|
|
||||
|
||||
+1
-1
@@ -1,4 +1,4 @@
|
||||
<T> public final class ClassParamUsedInFun : R|kotlin/Any| {
|
||||
public final class ClassParamUsedInFun<T> : R|kotlin/Any| {
|
||||
public final fun f(t: R|T|): R|kotlin/Int|
|
||||
|
||||
public constructor(): R|test/ClassParamUsedInFun<T>|
|
||||
|
||||
+1
-1
@@ -1,4 +1,4 @@
|
||||
<T> public final class ClassParamUsedInFun : R|kotlin/Any| {
|
||||
public final class ClassParamUsedInFun<T> : R|kotlin/Any| {
|
||||
public final fun f(t: R|T|): R|kotlin/Int|
|
||||
|
||||
public constructor(): R|test/ClassParamUsedInFun<T>|
|
||||
|
||||
+1
-1
@@ -1,4 +1,4 @@
|
||||
<T> public open class Base : R|kotlin/Any| {
|
||||
public open class Base<T> : R|kotlin/Any| {
|
||||
public final fun foo(): R|T|
|
||||
|
||||
public constructor(): R|test/Base<T>|
|
||||
|
||||
Vendored
+1
-1
@@ -1,4 +1,4 @@
|
||||
<P> public abstract interface Bbb : R|kotlin/Any| {
|
||||
public abstract interface Bbb<P> : R|kotlin/Any| {
|
||||
}
|
||||
|
||||
public final class ClassObjectExtendsTraitWithTP : R|kotlin/Any| {
|
||||
|
||||
Vendored
+1
-1
@@ -1,4 +1,4 @@
|
||||
<P, Q> public final class ClassWithConstructorAndTypeParameter : R|kotlin/Any| {
|
||||
public final class ClassWithConstructorAndTypeParameter<P, Q> : R|kotlin/Any| {
|
||||
public constructor(): R|test/ClassWithConstructorAndTypeParameter<P, Q>|
|
||||
|
||||
}
|
||||
|
||||
+1
-1
@@ -1,4 +1,4 @@
|
||||
<P, Q> public final class ClassWithConstructorAndTypeParameter : R|kotlin/Any| {
|
||||
public final class ClassWithConstructorAndTypeParameter<P, Q> : R|kotlin/Any| {
|
||||
public constructor(q: R|kotlin/Int|): R|test/ClassWithConstructorAndTypeParameter<P, Q>|
|
||||
|
||||
}
|
||||
|
||||
+1
-1
@@ -1,4 +1,4 @@
|
||||
<P, Q> public final class ClassWithConstructorAndTypeParameter : R|kotlin/Any| {
|
||||
public final class ClassWithConstructorAndTypeParameter<P, Q> : R|kotlin/Any| {
|
||||
public constructor(q: R|Q|): R|test/ClassWithConstructorAndTypeParameter<P, Q>|
|
||||
|
||||
}
|
||||
|
||||
Vendored
+1
-1
@@ -1,4 +1,4 @@
|
||||
<P> public final class ClassWithConstructorAndTypeParameter : R|kotlin/Any| {
|
||||
public final class ClassWithConstructorAndTypeParameter<P> : R|kotlin/Any| {
|
||||
public constructor(): R|test/ClassWithConstructorAndTypeParameter<P>|
|
||||
|
||||
}
|
||||
|
||||
+1
-1
@@ -1,4 +1,4 @@
|
||||
<P, Q> public final class OneTypeParameterErased : R|kotlin/Any| {
|
||||
public final class OneTypeParameterErased<P, Q> : R|kotlin/Any| {
|
||||
public constructor(q: R|Q|): R|test/OneTypeParameterErased<P, Q>|
|
||||
|
||||
}
|
||||
|
||||
+1
-1
@@ -1,4 +1,4 @@
|
||||
<P> public final class ClassWithTypeP : R|kotlin/Any| {
|
||||
public final class ClassWithTypeP<P> : R|kotlin/Any| {
|
||||
public constructor(): R|test/ClassWithTypeP<P>|
|
||||
|
||||
}
|
||||
|
||||
Vendored
+1
-1
@@ -1,4 +1,4 @@
|
||||
<P> public abstract class ClassWithTypePExtendsIterableP : R|kotlin/collections/MutableIterable<P>| {
|
||||
public abstract class ClassWithTypePExtendsIterableP<P> : R|kotlin/collections/MutableIterable<P>| {
|
||||
public constructor(): R|test/ClassWithTypePExtendsIterableP<P>|
|
||||
|
||||
}
|
||||
|
||||
+1
-1
@@ -1,4 +1,4 @@
|
||||
<P, Q> public final class ClassWithTypePP : R|kotlin/Any| {
|
||||
public final class ClassWithTypePP<P, Q> : R|kotlin/Any| {
|
||||
public constructor(): R|test/ClassWithTypePP<P, Q>|
|
||||
|
||||
}
|
||||
|
||||
+1
-1
@@ -1,4 +1,4 @@
|
||||
<R, P> public open class ClassWithTypePRefNext : R|kotlin/Any| {
|
||||
public open class ClassWithTypePRefNext<R, P> : R|kotlin/Any| {
|
||||
public constructor(): R|test/ClassWithTypePRefNext<R, P>|
|
||||
|
||||
}
|
||||
|
||||
+1
-1
@@ -1,4 +1,4 @@
|
||||
<P> public final class ClassWithTypePRefSelf : R|kotlin/Any| {
|
||||
public final class ClassWithTypePRefSelf<P> : R|kotlin/Any| {
|
||||
public constructor(): R|test/ClassWithTypePRefSelf<P>|
|
||||
|
||||
}
|
||||
|
||||
Vendored
+1
-1
@@ -1,4 +1,4 @@
|
||||
<P> public final class ClassWithTypePRefSelfAndClass : R|kotlin/Any| {
|
||||
public final class ClassWithTypePRefSelfAndClass<P> : R|kotlin/Any| {
|
||||
public constructor(): R|test/ClassWithTypePRefSelfAndClass<P>|
|
||||
|
||||
}
|
||||
|
||||
+1
-1
@@ -1 +1 @@
|
||||
<T> public final fun foo(t: R|T|): R|T|
|
||||
public final fun <T> foo(t: R|T|): R|T|
|
||||
|
||||
+2
-2
@@ -4,14 +4,14 @@ public final class InheritMethodsDifferentReturnTypesGeneric : R|kotlin/Any| {
|
||||
public abstract interface Sub : R|test/InheritMethodsDifferentReturnTypesGeneric.Super1<kotlin/String, kotlin/CharSequence>|, R|test/InheritMethodsDifferentReturnTypesGeneric.Super2<kotlin/CharSequence, kotlin/String>| {
|
||||
}
|
||||
|
||||
<F, B> public abstract interface Super1 : R|kotlin/Any| {
|
||||
public abstract interface Super1<F, B> : R|kotlin/Any| {
|
||||
public abstract fun bar(): R|B|
|
||||
|
||||
public abstract fun foo(): R|F|
|
||||
|
||||
}
|
||||
|
||||
<FF, BB> public abstract interface Super2 : R|kotlin/Any| {
|
||||
public abstract interface Super2<FF, BB> : R|kotlin/Any| {
|
||||
public abstract fun bar(): R|BB|
|
||||
|
||||
public abstract fun foo(): R|FF|
|
||||
|
||||
+1
-1
@@ -1,5 +1,5 @@
|
||||
public open class MethodTypePOneUpperBound : R|kotlin/Any| {
|
||||
<T> public open fun bar(): R|kotlin/Unit|
|
||||
public open fun <T> bar(): R|kotlin/Unit|
|
||||
|
||||
public constructor(): R|test/MethodTypePOneUpperBound|
|
||||
|
||||
|
||||
Vendored
+1
-1
@@ -1,5 +1,5 @@
|
||||
public open class MethodTypePTwoUpperBounds : R|kotlin/Any| {
|
||||
<T> public open fun foo(): R|kotlin/Unit|
|
||||
public open fun <T> foo(): R|kotlin/Unit|
|
||||
|
||||
public constructor(): R|test/MethodTypePTwoUpperBounds|
|
||||
|
||||
|
||||
+1
-1
@@ -1,5 +1,5 @@
|
||||
public final class MethodWithTypeP : R|kotlin/Any| {
|
||||
<P> public final fun f(): R|kotlin/Unit|
|
||||
public final fun <P> f(): R|kotlin/Unit|
|
||||
|
||||
public constructor(): R|test/MethodWithTypeP|
|
||||
|
||||
|
||||
+1
-1
@@ -1,5 +1,5 @@
|
||||
public final class MethodWithTypePP : R|kotlin/Any| {
|
||||
<P, Q> public final fun f(): R|kotlin/Unit|
|
||||
public final fun <P, Q> f(): R|kotlin/Unit|
|
||||
|
||||
public constructor(): R|test/MethodWithTypePP|
|
||||
|
||||
|
||||
+2
-2
@@ -1,5 +1,5 @@
|
||||
<P> public open class MethodWithTypePRefClassP : R|kotlin/Any| {
|
||||
<Q> public final fun f(): R|kotlin/Unit|
|
||||
public open class MethodWithTypePRefClassP<P> : R|kotlin/Any| {
|
||||
public final fun <Q> f(): R|kotlin/Unit|
|
||||
|
||||
public constructor(): R|test/MethodWithTypePRefClassP<P>|
|
||||
|
||||
|
||||
+1
-1
@@ -1,5 +1,5 @@
|
||||
public final class MethosWithPRefTP : R|kotlin/Any| {
|
||||
<P> public final fun f(p0: R|P|): R|kotlin/Unit|
|
||||
public final fun <P> f(p0: R|P|): R|kotlin/Unit|
|
||||
|
||||
public constructor(): R|test/MethosWithPRefTP|
|
||||
|
||||
|
||||
+1
-1
@@ -3,7 +3,7 @@ public final class UnboundWildcard : R|kotlin/Any| {
|
||||
|
||||
public constructor(): R|test/UnboundWildcard|
|
||||
|
||||
<T> public abstract interface MyClass : R|kotlin/Any| {
|
||||
public abstract interface MyClass<T> : R|kotlin/Any| {
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
Vendored
+1
-1
@@ -1,5 +1,5 @@
|
||||
public open class AllBoundsInWhen : R|kotlin/Any| {
|
||||
<T> public open fun foo(): R|kotlin/Unit|
|
||||
public open fun <T> foo(): R|kotlin/Unit|
|
||||
|
||||
public constructor(): R|test/AllBoundsInWhen|
|
||||
|
||||
|
||||
+1
-1
@@ -1,4 +1,4 @@
|
||||
<T> public open class ConstructorWithNewTypeParams : R|kotlin/Any| {
|
||||
public open class ConstructorWithNewTypeParams<T> : R|kotlin/Any| {
|
||||
public constructor(first: R|kotlin/Any|): R|test/ConstructorWithNewTypeParams<T>|
|
||||
|
||||
}
|
||||
|
||||
+1
-1
@@ -1,4 +1,4 @@
|
||||
<T> public open class ConstructorWithParentTypeParams : R|kotlin/Any| {
|
||||
public open class ConstructorWithParentTypeParams<T> : R|kotlin/Any| {
|
||||
public constructor(first: R|T|): R|test/ConstructorWithParentTypeParams<T>|
|
||||
|
||||
}
|
||||
|
||||
+1
-1
@@ -1,5 +1,5 @@
|
||||
public open class MethodWithMappedClasses : R|kotlin/Any| {
|
||||
<T> public open fun copy(dest: R|kotlin/collections/MutableList<in T>|, src: R|kotlin/collections/List<T>|): R|kotlin/Unit|
|
||||
public open fun <T> copy(dest: R|kotlin/collections/MutableList<in T>|, src: R|kotlin/collections/List<T>|): R|kotlin/Unit|
|
||||
|
||||
public constructor(): R|test/MethodWithMappedClasses|
|
||||
|
||||
|
||||
+1
-1
@@ -1,5 +1,5 @@
|
||||
public open class MethodWithTypeParameters : R|kotlin/Any| {
|
||||
<A, B> public open fun foo(a: R|A|, b: R|kotlin/collections/List<B>|, c: R|kotlin/collections/MutableList<in kotlin/String>|): R|kotlin/Unit|
|
||||
public open fun <A, B> foo(a: R|A|, b: R|kotlin/collections/List<B>|, c: R|kotlin/collections/MutableList<in kotlin/String>|): R|kotlin/Unit|
|
||||
|
||||
public constructor(): R|test/MethodWithTypeParameters|
|
||||
|
||||
|
||||
compiler/fir/resolve/testData/loadCompiledKotlin/fromLoadJava/kotlinSignature/PropertyArrayTypes.txt
Vendored
+1
-1
@@ -1,4 +1,4 @@
|
||||
<T> public open class PropertyArrayTypes : R|kotlin/Any| {
|
||||
public open class PropertyArrayTypes<T> : R|kotlin/Any| {
|
||||
public constructor(): R|test/PropertyArrayTypes<T>|
|
||||
|
||||
}
|
||||
|
||||
+1
-1
@@ -1,4 +1,4 @@
|
||||
<T> public open class PropertyComplexTypes : R|kotlin/Any| {
|
||||
public open class PropertyComplexTypes<T> : R|kotlin/Any| {
|
||||
public constructor(): R|test/PropertyComplexTypes<T>|
|
||||
|
||||
}
|
||||
|
||||
Vendored
+1
-1
@@ -3,7 +3,7 @@ public final class StarProjection : R|kotlin/Any| {
|
||||
|
||||
public constructor(): R|test/StarProjection|
|
||||
|
||||
<T> public abstract interface MyClass : R|kotlin/Any| {
|
||||
public abstract interface MyClass<T> : R|kotlin/Any| {
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
+1
-1
@@ -1,5 +1,5 @@
|
||||
public open class ExtraUpperBound : R|kotlin/Any| {
|
||||
<A> public open fun foo(): R|kotlin/String|?
|
||||
public open fun <A> foo(): R|kotlin/String|?
|
||||
|
||||
public constructor(): R|test/ExtraUpperBound|
|
||||
|
||||
|
||||
+1
-1
@@ -1,5 +1,5 @@
|
||||
public open class MissingUpperBound : R|kotlin/Any| {
|
||||
<A> public open fun foo(): R|kotlin/String|?
|
||||
public open fun <A> foo(): R|kotlin/String|?
|
||||
|
||||
public constructor(): R|test/MissingUpperBound|
|
||||
|
||||
|
||||
+1
-1
@@ -1,5 +1,5 @@
|
||||
public open class WrongTypeParameterBoundStructure1 : R|kotlin/Any| {
|
||||
<A, B> public open fun foo(p0: R|A|, p1: R|kotlin/collections/List<B>|?): R|kotlin/Unit|
|
||||
public open fun <A, B> foo(p0: R|A|, p1: R|kotlin/collections/List<B>|?): R|kotlin/Unit|
|
||||
|
||||
public constructor(): R|test/WrongTypeParameterBoundStructure1|
|
||||
|
||||
|
||||
+1
-1
@@ -1,5 +1,5 @@
|
||||
public open class WrongTypeParameterBoundStructure2 : R|kotlin/Any| {
|
||||
<A, B> public open fun foo(p0: R|A|, p1: R|kotlin/collections/List<B>|?): R|kotlin/Unit|
|
||||
public open fun <A, B> foo(p0: R|A|, p1: R|kotlin/collections/List<B>|?): R|kotlin/Unit|
|
||||
|
||||
public constructor(): R|test/WrongTypeParameterBoundStructure2|
|
||||
|
||||
|
||||
+1
-1
@@ -1,5 +1,5 @@
|
||||
public open class WrongTypeParametersCount : R|kotlin/Any| {
|
||||
<A, B> public open fun foo(p0: R|A|, p1: R|kotlin/collections/List<B>|?): R|kotlin/Unit|
|
||||
public open fun <A, B> foo(p0: R|A|, p1: R|kotlin/collections/List<B>|?): R|kotlin/Unit|
|
||||
|
||||
public constructor(): R|test/WrongTypeParametersCount|
|
||||
|
||||
|
||||
+2
-2
@@ -1,5 +1,5 @@
|
||||
public abstract interface DeeplySubstitutedClassParameter : R|kotlin/Any| {
|
||||
<E> public abstract interface Middle : R|test/DeeplySubstitutedClassParameter.Super<E>| {
|
||||
public abstract interface Middle<E> : R|test/DeeplySubstitutedClassParameter.Super<E>| {
|
||||
public abstract fun foo(t: R|E|): R|kotlin/Unit|
|
||||
|
||||
}
|
||||
@@ -9,7 +9,7 @@ public abstract interface DeeplySubstitutedClassParameter : R|kotlin/Any| {
|
||||
|
||||
}
|
||||
|
||||
<T> public abstract interface Super : R|kotlin/Any| {
|
||||
public abstract interface Super<T> : R|kotlin/Any| {
|
||||
public abstract fun dummy(): R|kotlin/Unit|
|
||||
|
||||
public abstract fun foo(t: R|T|): R|kotlin/Unit|
|
||||
|
||||
+2
-2
@@ -1,5 +1,5 @@
|
||||
public abstract interface DeeplySubstitutedClassParameter2 : R|kotlin/Any| {
|
||||
<E> public abstract interface Middle : R|test/DeeplySubstitutedClassParameter2.Super<E>| {
|
||||
public abstract interface Middle<E> : R|test/DeeplySubstitutedClassParameter2.Super<E>| {
|
||||
}
|
||||
|
||||
public abstract interface Sub : R|test/DeeplySubstitutedClassParameter2.Middle<kotlin/String>| {
|
||||
@@ -7,7 +7,7 @@ public abstract interface DeeplySubstitutedClassParameter2 : R|kotlin/Any| {
|
||||
|
||||
}
|
||||
|
||||
<T> public abstract interface Super : R|kotlin/Any| {
|
||||
public abstract interface Super<T> : R|kotlin/Any| {
|
||||
public abstract fun dummy(): R|kotlin/Unit|
|
||||
|
||||
public abstract fun foo(t: R|T|): R|kotlin/Unit|
|
||||
|
||||
+1
-1
@@ -11,7 +11,7 @@ public abstract interface Kt3302 : R|kotlin/Any| {
|
||||
|
||||
}
|
||||
|
||||
<K, V> public abstract interface LinkedHashMap : R|kotlin/Any| {
|
||||
public abstract interface LinkedHashMap<K, V> : R|kotlin/Any| {
|
||||
public abstract fun dummy(): R|kotlin/Unit|
|
||||
|
||||
public abstract fun put(key: R|K|, value: R|V|): R|V|
|
||||
|
||||
+2
-2
@@ -1,10 +1,10 @@
|
||||
public abstract interface OverrideWithErasedParameter : R|kotlin/Any| {
|
||||
<T> public abstract interface Sub : R|test/OverrideWithErasedParameter.Super<T>| {
|
||||
public abstract interface Sub<T> : R|test/OverrideWithErasedParameter.Super<T>| {
|
||||
public abstract fun foo(p0: R|T|): R|kotlin/Unit|
|
||||
|
||||
}
|
||||
|
||||
<T> public abstract interface Super : R|kotlin/Any| {
|
||||
public abstract interface Super<T> : R|kotlin/Any| {
|
||||
public abstract fun dummy(): R|kotlin/Unit|
|
||||
|
||||
public abstract fun foo(p0: R|T|): R|kotlin/Unit|
|
||||
|
||||
+1
-1
@@ -1,5 +1,5 @@
|
||||
public abstract interface SubclassFromGenericAndNot : R|kotlin/Any| {
|
||||
<T> public abstract interface Generic : R|kotlin/Any| {
|
||||
public abstract interface Generic<T> : R|kotlin/Any| {
|
||||
public abstract fun dummy(): R|kotlin/Unit|
|
||||
|
||||
public abstract fun foo(key: R|T|): R|kotlin/Unit|
|
||||
|
||||
+1
-1
@@ -4,7 +4,7 @@ public abstract interface SubstitutedClassParameter : R|kotlin/Any| {
|
||||
|
||||
}
|
||||
|
||||
<T> public abstract interface Super : R|kotlin/Any| {
|
||||
public abstract interface Super<T> : R|kotlin/Any| {
|
||||
public abstract fun dummy(): R|kotlin/Unit|
|
||||
|
||||
public abstract fun foo(t: R|T|): R|kotlin/Unit|
|
||||
|
||||
+2
-2
@@ -4,14 +4,14 @@ public abstract interface SubstitutedClassParameters : R|kotlin/Any| {
|
||||
|
||||
}
|
||||
|
||||
<T> public abstract interface Super1 : R|kotlin/Any| {
|
||||
public abstract interface Super1<T> : R|kotlin/Any| {
|
||||
public abstract fun dummy(): R|kotlin/Unit|
|
||||
|
||||
public abstract fun foo(t: R|T|): R|kotlin/Unit|
|
||||
|
||||
}
|
||||
|
||||
<E> public abstract interface Super2 : R|kotlin/Any| {
|
||||
public abstract interface Super2<E> : R|kotlin/Any| {
|
||||
public abstract fun dummy(): R|kotlin/Unit|
|
||||
|
||||
public abstract fun foo(t: R|E|): R|kotlin/Unit|
|
||||
|
||||
+2
-2
@@ -1,5 +1,5 @@
|
||||
public abstract interface DeeplySubstitutedClassParameter : R|kotlin/Any| {
|
||||
<E> public abstract interface Middle : R|test/DeeplySubstitutedClassParameter.Super<E>| {
|
||||
public abstract interface Middle<E> : R|test/DeeplySubstitutedClassParameter.Super<E>| {
|
||||
public abstract fun foo(): R|E|
|
||||
|
||||
}
|
||||
@@ -9,7 +9,7 @@ public abstract interface DeeplySubstitutedClassParameter : R|kotlin/Any| {
|
||||
|
||||
}
|
||||
|
||||
<T> public abstract interface Super : R|kotlin/Any| {
|
||||
public abstract interface Super<T> : R|kotlin/Any| {
|
||||
public abstract fun dummy(): R|kotlin/Unit|
|
||||
|
||||
public abstract fun foo(): R|T|
|
||||
|
||||
+2
-2
@@ -1,5 +1,5 @@
|
||||
public abstract interface DeeplySubstitutedClassParameter2 : R|kotlin/Any| {
|
||||
<E> public abstract interface Middle : R|test/DeeplySubstitutedClassParameter2.Super<E>| {
|
||||
public abstract interface Middle<E> : R|test/DeeplySubstitutedClassParameter2.Super<E>| {
|
||||
}
|
||||
|
||||
public abstract interface Sub : R|test/DeeplySubstitutedClassParameter2.Middle<kotlin/String>| {
|
||||
@@ -7,7 +7,7 @@ public abstract interface DeeplySubstitutedClassParameter2 : R|kotlin/Any| {
|
||||
|
||||
}
|
||||
|
||||
<T> public abstract interface Super : R|kotlin/Any| {
|
||||
public abstract interface Super<T> : R|kotlin/Any| {
|
||||
public abstract fun dummy(): R|kotlin/Unit|
|
||||
|
||||
public abstract fun foo(): R|T|
|
||||
|
||||
+1
-1
@@ -11,7 +11,7 @@ public abstract interface HalfSubstitutedTypeParameters : R|kotlin/Any| {
|
||||
|
||||
}
|
||||
|
||||
<X, E> public abstract interface TrickyList : R|kotlin/collections/MutableList<E>| {
|
||||
public abstract interface TrickyList<X, E> : R|kotlin/collections/MutableList<E>| {
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
+1
-1
@@ -1,5 +1,5 @@
|
||||
public abstract interface SubclassFromGenericAndNot : R|kotlin/Any| {
|
||||
<T> public abstract interface Generic : R|kotlin/Any| {
|
||||
public abstract interface Generic<T> : R|kotlin/Any| {
|
||||
public abstract fun dummy(): R|kotlin/Unit|
|
||||
|
||||
public abstract fun foo(): R|T|
|
||||
|
||||
+1
-1
@@ -1,4 +1,4 @@
|
||||
<E> public abstract interface SubclassOfCollection : R|kotlin/collections/MutableCollection<E>| {
|
||||
public abstract interface SubclassOfCollection<E> : R|kotlin/collections/MutableCollection<E>| {
|
||||
public abstract operator fun iterator(): R|kotlin/collections/MutableIterator<E>|
|
||||
|
||||
}
|
||||
|
||||
+1
-1
@@ -1,4 +1,4 @@
|
||||
<K, V> public abstract interface SubclassOfMapEntry : R|kotlin/collections/MutableMap.MutableEntry<K, V>| {
|
||||
public abstract interface SubclassOfMapEntry<K, V> : R|kotlin/collections/MutableMap.MutableEntry<K, V>| {
|
||||
public abstract fun setValue(value: R|V|): R|V|
|
||||
|
||||
}
|
||||
|
||||
+1
-1
@@ -4,7 +4,7 @@ public abstract interface SubstitutedClassParameter : R|kotlin/Any| {
|
||||
|
||||
}
|
||||
|
||||
<T> public abstract interface Super : R|kotlin/Any| {
|
||||
public abstract interface Super<T> : R|kotlin/Any| {
|
||||
public abstract fun dummy(): R|kotlin/Unit|
|
||||
|
||||
public abstract fun foo(): R|T|
|
||||
|
||||
+2
-2
@@ -4,14 +4,14 @@ public abstract interface SubstitutedClassParameters : R|kotlin/Any| {
|
||||
|
||||
}
|
||||
|
||||
<T> public abstract interface Super1 : R|kotlin/Any| {
|
||||
public abstract interface Super1<T> : R|kotlin/Any| {
|
||||
public abstract fun dummy(): R|kotlin/Unit|
|
||||
|
||||
public abstract fun foo(): R|T|
|
||||
|
||||
}
|
||||
|
||||
<E> public abstract interface Super2 : R|kotlin/Any| {
|
||||
public abstract interface Super2<E> : R|kotlin/Any| {
|
||||
public abstract fun dummy(): R|kotlin/Unit|
|
||||
|
||||
public abstract fun foo(): R|E|
|
||||
|
||||
+2
-2
@@ -1,10 +1,10 @@
|
||||
public abstract interface TypeParamOfClass : R|kotlin/Any| {
|
||||
<T> public abstract interface Sub : R|test/TypeParamOfClass.Super<T>| {
|
||||
public abstract interface Sub<T> : R|test/TypeParamOfClass.Super<T>| {
|
||||
public abstract fun foo(): R|T|
|
||||
|
||||
}
|
||||
|
||||
<T> public abstract interface Super : R|kotlin/Any| {
|
||||
public abstract interface Super<T> : R|kotlin/Any| {
|
||||
public abstract fun dummy(): R|kotlin/Unit|
|
||||
|
||||
public abstract fun foo(): R|T|
|
||||
|
||||
+1
-1
@@ -4,7 +4,7 @@ public abstract interface TypeParamOfClassSubstituted : R|kotlin/Any| {
|
||||
|
||||
}
|
||||
|
||||
<T> public abstract interface Super : R|kotlin/Any| {
|
||||
public abstract interface Super<T> : R|kotlin/Any| {
|
||||
public abstract fun dummy(): R|kotlin/Unit|
|
||||
|
||||
public abstract fun foo(): R|T|
|
||||
|
||||
+2
-2
@@ -1,13 +1,13 @@
|
||||
public abstract interface TypeParamOfFun : R|kotlin/Any| {
|
||||
public abstract interface Sub : R|test/TypeParamOfFun.Super| {
|
||||
<E> public abstract fun foo(): R|E|
|
||||
public abstract fun <E> foo(): R|E|
|
||||
|
||||
}
|
||||
|
||||
public abstract interface Super : R|kotlin/Any| {
|
||||
public abstract fun dummy(): R|kotlin/Unit|
|
||||
|
||||
<T> public abstract fun foo(): R|T|
|
||||
public abstract fun <T> foo(): R|T|
|
||||
|
||||
}
|
||||
|
||||
|
||||
+2
-2
@@ -1,11 +1,11 @@
|
||||
public abstract interface InheritMutability : R|kotlin/Any| {
|
||||
public abstract interface Sub : R|test/InheritMutability.Super| {
|
||||
<B> public abstract fun foo(a: R|B|): R|kotlin/Unit|
|
||||
public abstract fun <B> foo(a: R|B|): R|kotlin/Unit|
|
||||
|
||||
}
|
||||
|
||||
public abstract interface Super : R|kotlin/Any| {
|
||||
<A> public abstract fun foo(a: R|A|): R|kotlin/Unit|
|
||||
public abstract fun <A> foo(a: R|A|): R|kotlin/Unit|
|
||||
|
||||
}
|
||||
|
||||
|
||||
+2
-2
@@ -1,11 +1,11 @@
|
||||
public abstract interface InheritNullability : R|kotlin/Any| {
|
||||
public abstract interface Sub : R|test/InheritNullability.Super| {
|
||||
<B> public abstract fun foo(a: R|B|): R|kotlin/Unit|
|
||||
public abstract fun <B> foo(a: R|B|): R|kotlin/Unit|
|
||||
|
||||
}
|
||||
|
||||
public abstract interface Super : R|kotlin/Any| {
|
||||
<A> public abstract fun foo(a: R|A|): R|kotlin/Unit|
|
||||
public abstract fun <A> foo(a: R|A|): R|kotlin/Unit|
|
||||
|
||||
}
|
||||
|
||||
|
||||
+2
-2
@@ -1,11 +1,11 @@
|
||||
public abstract interface InheritReadOnliness : R|kotlin/Any| {
|
||||
public abstract interface Sub : R|test/InheritReadOnliness.Super| {
|
||||
<B> public abstract fun foo(a: R|B|): R|kotlin/Unit|
|
||||
public abstract fun <B> foo(a: R|B|): R|kotlin/Unit|
|
||||
|
||||
}
|
||||
|
||||
public abstract interface Super : R|kotlin/Any| {
|
||||
<A> public abstract fun foo(a: R|A|): R|kotlin/Unit|
|
||||
public abstract fun <A> foo(a: R|A|): R|kotlin/Unit|
|
||||
|
||||
}
|
||||
|
||||
|
||||
+2
-2
@@ -1,11 +1,11 @@
|
||||
public abstract interface TwoBounds : R|kotlin/Any| {
|
||||
public abstract interface Sub : R|test/TwoBounds.Super| {
|
||||
<B> public abstract fun foo(a: R|B|): R|kotlin/Unit|
|
||||
public abstract fun <B> foo(a: R|B|): R|kotlin/Unit|
|
||||
|
||||
}
|
||||
|
||||
public abstract interface Super : R|kotlin/Any| {
|
||||
<A> public abstract fun foo(a: R|A|): R|kotlin/Unit|
|
||||
public abstract fun <A> foo(a: R|A|): R|kotlin/Unit|
|
||||
|
||||
}
|
||||
|
||||
|
||||
+3
-3
@@ -1,16 +1,16 @@
|
||||
public abstract interface TwoSuperclasses : R|kotlin/Any| {
|
||||
public abstract interface Sub : R|test/TwoSuperclasses.Super1|, R|test/TwoSuperclasses.Super2| {
|
||||
<C> public abstract fun foo(a: R|C|): R|kotlin/Unit|
|
||||
public abstract fun <C> foo(a: R|C|): R|kotlin/Unit|
|
||||
|
||||
}
|
||||
|
||||
public abstract interface Super1 : R|kotlin/Any| {
|
||||
<A> public abstract fun foo(a: R|A|): R|kotlin/Unit|
|
||||
public abstract fun <A> foo(a: R|A|): R|kotlin/Unit|
|
||||
|
||||
}
|
||||
|
||||
public abstract interface Super2 : R|kotlin/Any| {
|
||||
<B> public abstract fun foo(a: R|B|): R|kotlin/Unit|
|
||||
public abstract fun <B> foo(a: R|B|): R|kotlin/Unit|
|
||||
|
||||
}
|
||||
|
||||
|
||||
+2
-2
@@ -1,11 +1,11 @@
|
||||
public abstract interface TwoTypeParameters : R|kotlin/Any| {
|
||||
public abstract interface Sub : R|test/TwoTypeParameters.Super| {
|
||||
<B, A> public abstract fun foo(a: R|B|, b: R|A|): R|kotlin/Unit|
|
||||
public abstract fun <B, A> foo(a: R|B|, b: R|A|): R|kotlin/Unit|
|
||||
|
||||
}
|
||||
|
||||
public abstract interface Super : R|kotlin/Any| {
|
||||
<A, B> public abstract fun foo(a: R|A|, b: R|B|): R|kotlin/Unit|
|
||||
public abstract fun <A, B> foo(a: R|A|, b: R|B|): R|kotlin/Unit|
|
||||
|
||||
}
|
||||
|
||||
|
||||
+2
-2
@@ -1,11 +1,11 @@
|
||||
public abstract interface UseParameterAsUpperBound : R|kotlin/Any| {
|
||||
public abstract interface Sub : R|test/UseParameterAsUpperBound.Super| {
|
||||
<B, A> public abstract fun foo(a: R|B|, b: R|A|): R|kotlin/Unit|
|
||||
public abstract fun <B, A> foo(a: R|B|, b: R|A|): R|kotlin/Unit|
|
||||
|
||||
}
|
||||
|
||||
public abstract interface Super : R|kotlin/Any| {
|
||||
<A, B> public abstract fun foo(a: R|A|, b: R|B|): R|kotlin/Unit|
|
||||
public abstract fun <A, B> foo(a: R|A|, b: R|B|): R|kotlin/Unit|
|
||||
|
||||
}
|
||||
|
||||
|
||||
+2
-2
@@ -1,11 +1,11 @@
|
||||
public abstract interface UseParameterInUpperBound : R|kotlin/Any| {
|
||||
public abstract interface Sub : R|test/UseParameterInUpperBound.Super| {
|
||||
<B, A> public abstract fun foo(a: R|B|, b: R|A|): R|kotlin/Unit|
|
||||
public abstract fun <B, A> foo(a: R|B|, b: R|A|): R|kotlin/Unit|
|
||||
|
||||
}
|
||||
|
||||
public abstract interface Super : R|kotlin/Any| {
|
||||
<A, B> public abstract fun foo(a: R|A|, b: R|B|): R|kotlin/Unit|
|
||||
public abstract fun <A, B> foo(a: R|A|, b: R|B|): R|kotlin/Unit|
|
||||
|
||||
}
|
||||
|
||||
|
||||
+2
-2
@@ -1,11 +1,11 @@
|
||||
public abstract interface UseParameterInUpperBoundWithKotlinSignature : R|kotlin/Any| {
|
||||
public abstract interface Sub : R|test/UseParameterInUpperBoundWithKotlinSignature.Super| {
|
||||
<B, A> public abstract fun foo(b: R|B|, a: R|A|): R|kotlin/Unit|
|
||||
public abstract fun <B, A> foo(b: R|B|, a: R|A|): R|kotlin/Unit|
|
||||
|
||||
}
|
||||
|
||||
public abstract interface Super : R|kotlin/Any| {
|
||||
<A, B> public abstract fun foo(a: R|A|, b: R|B|): R|kotlin/Unit|
|
||||
public abstract fun <A, B> foo(a: R|A|, b: R|B|): R|kotlin/Unit|
|
||||
|
||||
}
|
||||
|
||||
|
||||
+1
-1
@@ -1,4 +1,4 @@
|
||||
<T> public abstract interface LoadIterable : R|kotlin/Any| {
|
||||
public abstract interface LoadIterable<T> : R|kotlin/Any| {
|
||||
public abstract fun getIterable(): R|kotlin/collections/MutableIterable<T>|?
|
||||
|
||||
public abstract fun setIterable(p0: R|kotlin/collections/Iterable<T>|?): R|kotlin/Unit|
|
||||
|
||||
+1
-1
@@ -1,4 +1,4 @@
|
||||
<T> public abstract interface LoadIterator : R|kotlin/Any| {
|
||||
public abstract interface LoadIterator<T> : R|kotlin/Any| {
|
||||
public abstract fun getIterator(): R|kotlin/collections/MutableIterator<T>|?
|
||||
|
||||
public abstract fun setIterator(p0: R|kotlin/collections/Iterator<T>|?): R|kotlin/Unit|
|
||||
|
||||
+1
-1
@@ -1,5 +1,5 @@
|
||||
public open class Max : R|kotlin/Any| {
|
||||
<T> public open fun max(p0: R|kotlin/collections/Collection<T>|?): R|T|
|
||||
public open fun <T> max(p0: R|kotlin/collections/Collection<T>|?): R|T|
|
||||
|
||||
public constructor(): R|test/Max|
|
||||
|
||||
|
||||
Vendored
+1
-1
@@ -1 +1 @@
|
||||
<T> public final fun f(): R|kotlin/Int|
|
||||
public final fun <T> f(): R|kotlin/Int|
|
||||
|
||||
Vendored
+1
-1
@@ -1 +1 @@
|
||||
<P> public final fun funParamParam(a: R|kotlin/Int|, b: R|P|): R|kotlin/Int|
|
||||
public final fun <P> funParamParam(a: R|kotlin/Int|, b: R|P|): R|kotlin/Int|
|
||||
|
||||
+1
-1
@@ -1 +1 @@
|
||||
<P> public final fun funParamParam(a: R|kotlin/Int|, b: R|P|): R|kotlin/Int|
|
||||
public final fun <P> funParamParam(a: R|kotlin/Int|, b: R|P|): R|kotlin/Int|
|
||||
|
||||
+1
-1
@@ -1 +1 @@
|
||||
<P, Q> public final fun funParamReferencesParam(): R|kotlin/Int|
|
||||
public final fun <P, Q> funParamReferencesParam(): R|kotlin/Int|
|
||||
|
||||
+1
-1
@@ -1,4 +1,4 @@
|
||||
<T> public final fun foo(): R|kotlin/Unit|
|
||||
public final fun <T> foo(): R|kotlin/Unit|
|
||||
|
||||
public abstract interface Bar : R|kotlin/Any| {
|
||||
}
|
||||
|
||||
+1
-1
@@ -1 +1 @@
|
||||
<A> public final fun uno(): R|kotlin/Int|
|
||||
public final fun <A> uno(): R|kotlin/Int|
|
||||
|
||||
+1
-1
@@ -1 +1 @@
|
||||
<A> public final fun tres(): R|kotlin/Int|
|
||||
public final fun <A> tres(): R|kotlin/Int|
|
||||
|
||||
+1
-1
@@ -1 +1 @@
|
||||
<A> public final fun dos(): R|kotlin/Int|
|
||||
public final fun <A> dos(): R|kotlin/Int|
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user